blob: 1584232b5b60d2e159c9774c0f91204a57634a7c [file] [log] [blame]
Lusheng Jibad9c3e2017-09-01 03:06:57 +00001<?xml version="1.0"?>
2<!--
3================================================================================
Tommy Carpenter3b60a762019-02-20 07:34:09 -05004Copyright (c) 2017-2019 AT&T Intellectual Property. All rights reserved.
Lusheng Jibad9c3e2017-09-01 03:06:57 +00005================================================================================
6Licensed under the Apache License, Version 2.0 (the "License");
7you may not use this file except in compliance with the License.
8You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS,
14WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15See the License for the specific language governing permissions and
16limitations under the License.
17============LICENSE_END=========================================================
18
19ECOMP is a trademark and service mark of AT&T Intellectual Property.
20-->
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
Tommy Carpentere14b49e2019-05-29 13:36:01 -040023
Lusheng Jibad9c3e2017-09-01 03:06:57 +000024 <parent>
Tommy Carpentere14b49e2019-05-29 13:36:01 -040025 <groupId>org.onap.oparent</groupId>
26 <artifactId>oparent</artifactId>
27 <version>2.0.0</version>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000028 </parent>
29 <!--- CHANGE THE FOLLOWING 3 OBJECTS for your own repo -->
30 <groupId>org.onap.dcaegen2.platform</groupId>
31 <artifactId>configbinding</artifactId>
Jessica Wagantall59600642017-09-08 14:47:42 -070032 <name>dcaegen2-platform-configbinding</name>
Alexander Mazuruk626ee392021-02-18 17:16:29 +010033 <version>2.5.4-SNAPSHOT</version>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000034 <url>http://maven.apache.org</url>
35 <properties>
36 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Tommy Carpentere14b49e2019-05-29 13:36:01 -040037 <sonar.sources>.</sonar.sources>
38 <sonar.junit.reportsPath>xunit-results.xml</sonar.junit.reportsPath>
Vijay Venkatesh Kumarfb84d6d2020-06-30 14:33:07 +000039 <sonar.python.coverage.reportPaths>coverage.xml</sonar.python.coverage.reportPaths>
Tommy Carpentere14b49e2019-05-29 13:36:01 -040040 <sonar.python.xunit.reportPath>xunit-results.xml</sonar.python.xunit.reportPath>
41 <sonar.language>py</sonar.language>
42 <sonar.pluginname>python</sonar.pluginname>
43 <sonar.inclusions>config_binding_service/*.py</sonar.inclusions>
44 <sonar.exclusions>tests/*,setup.py</sonar.exclusions>
Lusheng Jibad9c3e2017-09-01 03:06:57 +000045 </properties>
46 <build>
47 <finalName>${project.artifactId}-${project.version}</finalName>
48 <pluginManagement>
49 <plugins>
Tommy Carpentere14b49e2019-05-29 13:36:01 -040050 <!-- the following plugins are invoked from oparent, we do not need them -->
51 <plugin>
52 <groupId>org.sonatype.plugins</groupId>
53 <artifactId>nexus-staging-maven-plugin</artifactId>
54 <version>1.6.7</version>
55 <configuration>
56 <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
57 </configuration>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-deploy-plugin</artifactId>
62 <!-- This version supports the "deployAtEnd" parameter -->
63 <version>2.8</version>
64 <configuration>
65 <skip>true</skip>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-enforcer-plugin</artifactId>
71 <version>3.0.0-M1</version>
72 <configuration>
73 <skip>true</skip>
74 </configuration>
75 </plugin>
76 <!-- first disable the default Java plugins at various stages -->
77 <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares the resources
78 dir. we do not need it -->
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-resources-plugin</artifactId>
82 <version>2.6</version>
83 <configuration>
84 <skip>true</skip>
85 </configuration>
86 </plugin>
87 <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it -->
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-compiler-plugin</artifactId>
91 <version>3.1</version>
92 <configuration>
93 <skip>true</skip>
94 </configuration>
95 </plugin>
96 <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it -->
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-jar-plugin</artifactId>
100 <version>2.4</version>
101 <executions>
102 <execution>
103 <id>default-jar</id>
104 <phase/>
105 </execution>
106 </executions>
107 </plugin>
108 <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under
109 target dir to ~/.m2. we do not need it -->
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-install-plugin</artifactId>
113 <version>2.4</version>
114 <configuration>
115 <skip>true</skip>
116 </configuration>
117 </plugin>
118 <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test.
119 we do not need it -->
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-surefire-plugin</artifactId>
123 <version>2.12.4</version>
124 <configuration>
125 <skipTests>true</skipTests>
126 </configuration>
127 </plugin>
Lusheng Jic2a234c2017-09-06 00:06:30 +0000128 <plugin>
129 <groupId>org.codehaus.mojo</groupId>
130 <artifactId>exec-maven-plugin</artifactId>
131 <version>1.2.1</version>
132 <configuration>
133 <executable>${session.executionRootDirectory}/mvn-phase-script.sh</executable>
134 <environmentVariables>
135 <!-- make mvn properties as env for our script -->
136 <MVN_PROJECT_GROUPID>${project.groupId}</MVN_PROJECT_GROUPID>
137 <MVN_PROJECT_ARTIFACTID>${project.artifactId}</MVN_PROJECT_ARTIFACTID>
138 <MVN_PROJECT_VERSION>${project.version}</MVN_PROJECT_VERSION>
139 <MVN_NEXUSPROXY>${onap.nexus.url}</MVN_NEXUSPROXY>
140 <MVN_RAWREPO_BASEURL_UPLOAD>${onap.nexus.rawrepo.baseurl.upload}</MVN_RAWREPO_BASEURL_UPLOAD>
141 <MVN_RAWREPO_BASEURL_DOWNLOAD>${onap.nexus.rawrepo.baseurl.download}</MVN_RAWREPO_BASEURL_DOWNLOAD>
142 <MVN_RAWREPO_SERVERID>${onap.nexus.rawrepo.serverid}</MVN_RAWREPO_SERVERID>
Tommy Carpentere14b49e2019-05-29 13:36:01 -0400143 <MVN_DOCKERREGISTRY_DAILY>${onap.nexus.dockerregistry.daily}</MVN_DOCKERREGISTRY_DAILY>
Vijay Venkatesh Kumar3c28f082019-06-11 13:13:05 +0000144 <MVN_DOCKERREGISTRY_SNAPSHOT>${onap.nexus.dockerregistry.daily}</MVN_DOCKERREGISTRY_SNAPSHOT>
Lusheng Jic2a234c2017-09-06 00:06:30 +0000145 <MVN_DOCKERREGISTRY_RELEASE>${onap.nexus.dockerregistry.release}</MVN_DOCKERREGISTRY_RELEASE>
146 </environmentVariables>
147 </configuration>
148 </plugin>
Lusheng Jibad9c3e2017-09-01 03:06:57 +0000149 </plugins>
150 </pluginManagement>
Tommy Carpentere14b49e2019-05-29 13:36:01 -0400151 <plugins>
152 <!-- plugin>
153 <artifactId>maven-assembly-plugin</artifactId>
154 <version>2.4.1</version>
155 <configuration>
156 <descriptors>
157 <descriptor>assembly/dep.xml</descriptor>
158 </descriptors>
159 </configuration>
160 <executions>
161 <execution>
162 <id>make-assembly</id>
163 <phase>package</phase>
164 <goals>
165 <goal>single</goal>
166 </goals>
167 </execution>
168 </executions>
169 </plugin -->
170 <!-- now we configure custom action (calling a script) at various lifecycle phases -->
171 <plugin>
172 <groupId>org.codehaus.mojo</groupId>
173 <artifactId>exec-maven-plugin</artifactId>
174 <version>1.2.1</version>
175 <executions>
176 <execution>
177 <id>clean phase script</id>
178 <phase>clean</phase>
179 <goals>
180 <goal>exec</goal>
181 </goals>
182 <configuration>
183 <arguments>
184 <argument>__</argument>
185 <argument>clean</argument>
186 </arguments>
187 </configuration>
188 </execution>
189 <execution>
190 <id>generate-sources script</id>
191 <phase>generate-sources</phase>
192 <goals>
193 <goal>exec</goal>
194 </goals>
195 <configuration>
196 <arguments>
197 <argument>__</argument>
198 <argument>generate-sources</argument>
199 </arguments>
200 </configuration>
201 </execution>
202 <execution>
203 <id>compile script</id>
204 <phase>compile</phase>
205 <goals>
206 <goal>exec</goal>
207 </goals>
208 <configuration>
209 <arguments>
210 <argument>__</argument>
211 <argument>compile</argument>
212 </arguments>
213 </configuration>
214 </execution>
215 <execution>
216 <id>package script</id>
217 <phase>package</phase>
218 <goals>
219 <goal>exec</goal>
220 </goals>
221 <configuration>
222 <arguments>
223 <argument>__</argument>
224 <argument>package</argument>
225 </arguments>
226 </configuration>
227 </execution>
228 <execution>
229 <id>test script</id>
230 <phase>test</phase>
231 <goals>
232 <goal>exec</goal>
233 </goals>
234 <configuration>
235 <arguments>
236 <argument>__</argument>
237 <argument>test</argument>
238 </arguments>
239 </configuration>
240 </execution>
241 <execution>
242 <id>install script</id>
243 <phase>install</phase>
244 <goals>
245 <goal>exec</goal>
246 </goals>
247 <configuration>
248 <arguments>
249 <argument>__</argument>
250 <argument>install</argument>
251 </arguments>
252 </configuration>
253 </execution>
254 <execution>
255 <id>deploy script</id>
256 <phase>deploy</phase>
257 <goals>
258 <goal>exec</goal>
259 </goals>
260 <configuration>
261 <arguments>
262 <argument>__</argument>
263 <argument>deploy</argument>
264 </arguments>
265 </configuration>
266 </execution>
267 </executions>
268 </plugin>
269 </plugins>
Lusheng Jibad9c3e2017-09-01 03:06:57 +0000270 </build>
Lusheng Jibad9c3e2017-09-01 03:06:57 +0000271</project>