Merge "Update committers"
[externalapi/nbi.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (c) 2018 Orange Licensed under the Apache License, Version 
3         2.0 (the "License"); you may not use this file except in compliance with 
4         the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
5         Unless required by applicable law or agreed to in writing, software distributed 
6         under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
7         OR CONDITIONS OF ANY KIND, either express or implied. See the License for 
8         the specific language governing permissions and limitations under the License. -->
9 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10   xmlns="http://maven.apache.org/POM/4.0.0"
11   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <groupId>org.onap.externalapi-nbi</groupId>
15   <artifactId>nbi-rest-services</artifactId>
16   <version>3.0.1</version>
17   <packaging>jar</packaging>
18
19   <name>externalapi-nbi</name>
20
21   <parent>
22     <groupId>org.onap.oparent</groupId>
23     <artifactId>oparent</artifactId>
24     <version>1.2.0</version>
25   </parent>
26
27   <properties>
28     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
29     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
30     <maven.compiler.target>1.8</maven.compiler.target>
31     <maven.compiler.source>1.8</maven.compiler.source>
32     <start-class>org.onap.nbi.Application</start-class>
33     <nexusproxy>https://nexus.onap.org</nexusproxy>
34     <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
35     <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
36     <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
37     <java.version>1.8</java.version>
38     <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
39     <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
40     <timestamp>${maven.build.timestamp}</timestamp>
41     <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
42     <!--docker -->
43     <docker.tag>${project.version}-${timestamp}</docker.tag>
44     <docker.latest.tag>${project.version}-latest</docker.latest.tag>
45     <!--sonar -->
46     <sonar.language>java</sonar.language>
47     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
48     <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports
49     </sonar.surefire.reportsPath>
50     <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec
51     </sonar.jacoco.reportPath>
52     <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec
53     </sonar.jacoco.itReportPath>
54     <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
55     <sonar.projectVersion>${project.version}</sonar.projectVersion>
56     <sonar.coverage.exclusions>**/model/**/*</sonar.coverage.exclusions>
57   </properties>
58
59   <repositories>
60     <repository>
61       <id>maven2-repository.java.net</id>
62       <name>Java.net Repository for Maven</name>
63       <url>http://download.java.net/maven/2/</url>
64       <layout>default</layout>
65     </repository>
66     <repository>
67       <id>ecomp-snapshots</id>
68       <name>Snapshot Repository</name>
69       <url>https://nexus.onap.org/content/repositories/releases/</url>
70     </repository>
71     <repository>
72       <id>ecomp-staging</id>
73       <name>Staging Repository</name>
74       <url>https://nexus.onap.org/content/repositories/staging/</url>
75     </repository>
76   </repositories>
77
78   <distributionManagement>
79     <repository>
80       <id>ecomp-releases</id>
81       <name>Release Repository</name>
82       <url>${nexusproxy}/${releaseNexusPath}</url>
83     </repository>
84     <snapshotRepository>
85       <id>ecomp-snapshots</id>
86       <name>Snapshot Repository</name>
87       <url>${nexusproxy}/${snapshotNexusPath}</url>
88     </snapshotRepository>
89   </distributionManagement>
90
91   <licenses>
92     <license>
93       <name>Apache2</name>
94       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
95     </license>
96   </licenses>
97
98   <dependencyManagement>
99     <dependencies>
100       <dependency>
101         <groupId>org.springframework.boot</groupId>
102         <artifactId>spring-boot-dependencies</artifactId>
103         <version>2.1.3.RELEASE</version>
104         <type>pom</type>
105         <scope>import</scope>
106       </dependency>
107     </dependencies>
108   </dependencyManagement>
109
110   <dependencies>
111
112     <dependency>
113       <groupId>org.springframework.boot</groupId>
114       <artifactId>spring-boot-starter-web</artifactId>
115     </dependency>
116
117     <dependency>
118       <groupId>org.springframework.boot</groupId>
119       <artifactId>spring-boot-starter-data-jpa</artifactId>
120     </dependency>
121
122     <dependency>
123       <groupId>org.springframework.boot</groupId>
124       <artifactId>spring-boot-starter-aop</artifactId>
125     </dependency>
126
127     <dependency>
128       <groupId>org.apache.commons</groupId>
129       <artifactId>commons-io</artifactId>
130       <version>1.3.2</version>
131     </dependency>
132
133     <dependency>
134       <groupId>commons-beanutils</groupId>
135       <artifactId>commons-beanutils</artifactId>
136       <version>1.9.3</version>
137     </dependency>
138
139     <dependency>
140       <groupId>javax.validation</groupId>
141       <artifactId>validation-api</artifactId>
142     </dependency>
143
144     <dependency>
145       <groupId>org.apache.commons</groupId>
146       <artifactId>commons-lang3</artifactId>
147     </dependency>
148
149     <!-- mongo -->
150
151     <dependency>
152       <groupId>org.springframework.boot</groupId>
153       <artifactId>spring-boot-starter-data-mongodb</artifactId>
154     </dependency>
155
156     <!-- mysql -->
157
158     <dependency>
159       <groupId>org.mariadb.jdbc</groupId>
160       <artifactId>mariadb-java-client</artifactId>
161     </dependency>
162
163     <!-- swagger -->
164
165     <dependency>
166       <groupId>io.swagger</groupId>
167       <artifactId>swagger-annotations</artifactId>
168       <version>1.5.18</version>
169     </dependency>
170
171     <!-- jackson -->
172
173     <dependency>
174       <groupId>com.fasterxml.jackson.dataformat</groupId>
175       <artifactId>jackson-dataformat-yaml</artifactId>
176     </dependency>
177
178     <!-- sdc tosca parser -->
179
180     <dependency>
181       <groupId>org.onap.sdc.sdc-tosca</groupId>
182       <artifactId>sdc-tosca</artifactId>
183       <version>1.4.6</version>
184     </dependency>
185
186     <!-- jolt -->
187
188     <dependency>
189       <groupId>com.bazaarvoice.jolt</groupId>
190       <artifactId>jolt-core</artifactId>
191       <version>0.1.0</version>
192       <exclusions>
193         <exclusion>
194           <groupId>com.fasterxml.jackson.core</groupId>
195           <artifactId>jackson-databind</artifactId>
196         </exclusion>
197       </exclusions>
198     </dependency>
199
200     <dependency>
201       <groupId>com.bazaarvoice.jolt</groupId>
202       <artifactId>json-utils</artifactId>
203       <version>0.1.0</version>
204       <exclusions>
205         <exclusion>
206           <groupId>com.fasterxml.jackson.core</groupId>
207           <artifactId>jackson-databind</artifactId>
208         </exclusion>
209       </exclusions>
210     </dependency>
211
212     <!-- test -->
213
214     <dependency>
215       <groupId>org.springframework.boot</groupId>
216       <artifactId>spring-boot-starter-test</artifactId>
217       <scope>test</scope>
218     </dependency>
219
220     <!-- test h2 -->
221
222     <dependency>
223       <groupId>com.h2database</groupId>
224       <artifactId>h2</artifactId>
225       <scope>test</scope>
226     </dependency>
227
228     <dependency>
229       <groupId>de.flapdoodle.embed</groupId>
230       <artifactId>de.flapdoodle.embed.mongo</artifactId>
231       <scope>test</scope>
232     </dependency>
233
234     <!-- test wiremock -->
235
236     <dependency>
237       <groupId>org.springframework.cloud</groupId>
238       <artifactId>spring-cloud-contract-wiremock</artifactId>
239       <version>1.2.6.RELEASE</version>
240       <scope>test</scope>
241       <exclusions>
242         <exclusion>
243           <groupId>com.fasterxml.jackson.core</groupId>
244           <artifactId>jackson-databind</artifactId>
245         </exclusion>
246       </exclusions>
247     </dependency>
248
249     <dependency>
250       <groupId>org.eclipse.jetty</groupId>
251       <artifactId>jetty-servlet</artifactId>
252       <scope>test</scope>
253     </dependency>
254
255     <dependency>
256       <groupId>org.eclipse.jetty</groupId>
257       <artifactId>jetty-servlets</artifactId>
258       <scope>test</scope>
259     </dependency>
260
261     <!-- runtime dev -->
262
263     <dependency>
264       <groupId>org.springframework.boot</groupId>
265       <artifactId>spring-boot-devtools</artifactId>
266       <scope>runtime</scope>
267     </dependency>
268
269     <!-- MSB SDK -->
270     <dependency>
271       <groupId>org.onap.msb.java-sdk</groupId>
272       <artifactId>msb-java-sdk</artifactId>
273       <version>1.2.0</version>
274     </dependency>
275
276     <!-- karate -->
277
278     <dependency>
279       <groupId>com.intuit.karate</groupId>
280       <artifactId>karate-junit4</artifactId>
281       <version>0.9.0</version>
282       <scope>test</scope>
283     </dependency>
284
285     <dependency>
286       <groupId>com.intuit.karate</groupId>
287       <artifactId>karate-apache</artifactId>
288       <version>0.9.0</version>
289       <scope>test</scope>
290     </dependency>
291
292   </dependencies>
293
294   <build>
295     <testResources>
296       <testResource>
297         <directory>src/test/java</directory>
298         <excludes>
299           <exclude>**/*.java</exclude>
300         </excludes>
301       </testResource>
302       <testResource>
303         <directory>src/test/resources</directory>
304       </testResource>
305     </testResources>
306     <plugins>
307       <plugin>
308         <groupId>org.springframework.boot</groupId>
309         <artifactId>spring-boot-maven-plugin</artifactId>
310         <executions>
311           <execution>
312             <goals>
313               <goal>repackage</goal>
314             </goals>
315             <configuration>
316               <mainClass>org.onap.nbi.Application</mainClass>
317             </configuration>
318           </execution>
319         </executions>
320       </plugin>
321       <plugin>
322         <groupId>org.apache.maven.plugins</groupId>
323         <artifactId>maven-surefire-plugin</artifactId>
324         <configuration>
325           <includes>
326             <include>org/onap/nbi/test/KarateApiTest.java</include>
327             <include>org/onap/nbi/test/ExecutionTaskTest.java</include>
328             <include>org/onap/nbi/test/ServiceOrderRepositoryTest.java</include>
329             <include>org/onap/nbi/apis/servicecatalog/ToscaInfosProcessorTest.java</include>
330           </includes>
331         </configuration>
332       </plugin>
333       <plugin>
334         <groupId>org.sonatype.plugins</groupId>
335         <artifactId>nexus-staging-maven-plugin</artifactId>
336         <extensions>true</extensions>
337         <configuration>
338           <nexusUrl>${nexusproxy}</nexusUrl>
339           <stagingProfileId>176c31dfe190a</stagingProfileId>
340           <serverId>ecomp-staging</serverId>
341         </configuration>
342       </plugin>
343       <plugin>
344         <groupId>org.apache.maven.plugins</groupId>
345         <artifactId>maven-site-plugin</artifactId>
346         <dependencies>
347           <dependency>
348             <groupId>org.apache.maven.wagon</groupId>
349             <artifactId>wagon-webdav-jackrabbit</artifactId>
350             <version>2.10</version>
351           </dependency>
352         </dependencies>
353       </plugin>
354       <plugin>
355         <groupId>com.mycila</groupId>
356         <artifactId>license-maven-plugin</artifactId>
357         <version>3.0</version>
358         <configuration>
359           <header>LICENSE.TXT</header>
360           <includes>
361             <include>restclient/**</include>
362             <include>src/**</include>
363             <include>./**/*.xml</include>
364             <include>./**/*.xml</include>
365             <include>./**/*.yml</include>
366             <include>./**/*.yaml</include>
367           </includes>
368           <excludes>
369             <!-- karate-config.js doesn't support comment, and is mandatory by
370               karate -->
371             <exclude>src/test/java/karate-config.js</exclude>
372           </excludes>
373           <skipExistingHeaders>true</skipExistingHeaders>
374           <skip>false</skip>
375           <mapping>
376             <http>SCRIPT_STYLE</http>
377           </mapping>
378         </configuration>
379         <executions>
380           <execution>
381             <goals>
382               <!-- Set goal to "format" to auto update license headers -->
383               <goal>check</goal>
384             </goals>
385             <phase>process-sources</phase>
386           </execution>
387         </executions>
388       </plugin>
389       <plugin>
390         <groupId>org.codehaus.mojo</groupId>
391         <artifactId>sonar-maven-plugin</artifactId>
392         <version>3.2</version>
393       </plugin>
394       <!--       <plugin> -->
395       <!--         <groupId>org.jacoco</groupId> -->
396       <!--         <artifactId>jacoco-maven-plugin</artifactId> -->
397       <!--         <version>0.8.1</version> -->
398       <!--         <configuration> -->
399       <!--           <dumpOnExit>true</dumpOnExit> -->
400       <!--           <includes> -->
401       <!--             <include>org.onap.nbi.*</include> -->
402       <!--           </includes> -->
403       <!--           <excludes> -->
404       <!--             <exclude>**/model/**/*</exclude> -->
405       <!--           </excludes> -->
406       <!--         </configuration> -->
407       <!--         <executions> -->
408       <!--           <execution> -->
409       <!--             <id>pre-unit-test</id> -->
410       <!--             <goals> -->
411       <!--               <goal>prepare-agent</goal> -->
412       <!--             </goals> -->
413       <!--             <configuration> -->
414       <!--               <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> -->
415       <!--               <append>true</append> -->
416       <!--             </configuration> -->
417       <!--           </execution> -->
418       <!--           <execution> -->
419       <!--             <id>pre-integration-test</id> -->
420       <!--             <phase>pre-integration-test</phase> -->
421       <!--             <goals> -->
422       <!--               <goal>prepare-agent</goal> -->
423       <!--             </goals> -->
424       <!--             <configuration> -->
425       <!--               <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile> -->
426       <!--               <append>true</append> -->
427       <!--             </configuration> -->
428       <!--           </execution> -->
429       <!--           <execution> -->
430       <!--             <goals> -->
431       <!--               <goal>merge</goal> -->
432       <!--             </goals> -->
433       <!--             <phase>post-integration-test</phase> -->
434       <!--             <configuration> -->
435       <!--               <fileSets> -->
436       <!--                 <fileSet -->
437       <!--                   implementation="org.apache.maven.shared.model.fileset.FileSet"> -->
438       <!--                   <directory>${project.build.directory}/coverage-reports</directory> -->
439       <!--                   <includes> -->
440       <!--                     <include>*.exec</include> -->
441       <!--                   </includes> -->
442       <!--                 </fileSet> -->
443       <!--               </fileSets> -->
444       <!--               <destFile>${project.build.directory}/jacoco-dev.exec</destFile> -->
445       <!--             </configuration> -->
446       <!--           </execution> -->
447       <!--         </executions> -->
448       <!--       </plugin> -->
449       <plugin>
450         <artifactId>maven-source-plugin</artifactId>
451         <executions>
452           <execution>
453             <id>attach-sources</id>
454             <phase>deploy</phase>
455             <goals>
456               <goal>jar-no-fork</goal>
457             </goals>
458           </execution>
459         </executions>
460       </plugin>
461     </plugins>
462   </build>
463
464
465   <profiles>
466     <profile>
467       <id>docker</id>
468       <build>
469         <plugins>
470           <plugin>
471             <groupId>io.fabric8</groupId>
472             <artifactId>docker-maven-plugin</artifactId>
473             <version>0.28.0</version>
474             <configuration>
475               <verbose>true</verbose>
476               <apiVersion>1.23</apiVersion>
477               <pullRegistry>${docker.pull.registry}</pullRegistry>
478               <pushRegistry>${docker.push.registry}</pushRegistry>
479               <images>
480                 <image>
481                   <name>onap/externalapi/nbi:${docker.tag}</name>
482                   <build>
483                     <cleanup>true</cleanup>
484                     <tags>
485                       <tag>latest</tag>
486                       <tag>${docker.latest.tag}</tag>
487                     </tags>
488                     <dockerFileDir>${project.basedir}</dockerFileDir>
489                     <args>
490                       <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
491                     </args>
492                   </build>
493                 </image>
494               </images>
495             </configuration>
496             <executions>
497               <execution>
498                 <id>clean-images</id>
499                 <phase>pre-clean</phase>
500                 <goals>
501                   <goal>remove</goal>
502                 </goals>
503                 <configuration>
504                   <removeMode>all</removeMode>
505                 </configuration>
506               </execution>
507               <execution>
508                 <id>generate-images</id>
509                 <phase>package</phase>
510                 <goals>
511                   <goal>build</goal>
512                 </goals>
513               </execution>
514               <execution>
515                 <id>push-images</id>
516                 <phase>deploy</phase>
517                 <goals>
518                   <goal>push</goal>
519                 </goals>
520               </execution>
521             </executions>
522           </plugin>
523         </plugins>
524       </build>
525     </profile>
526   </profiles>
527
528 </project>