Do not use maven stage plugin
[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>4.0.1-SNAPSHOT</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>2.0.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     <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
34     <nexusproxy>https://nexus.onap.org</nexusproxy>
35     <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
36     <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
37     <stagingNexusPath>content/repositories/staging/</stagingNexusPath>
38     <java.version>1.8</java.version>
39     <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
40     <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
41     <timestamp>${maven.build.timestamp}</timestamp>
42     <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
43     <!--docker -->
44     <docker.tag>${project.version}-${timestamp}</docker.tag>
45     <docker.latest.tag>${project.version}-latest</docker.latest.tag>
46     <!--sonar -->
47     <sonar.language>java</sonar.language>
48     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
49     <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports
50     </sonar.surefire.reportsPath>
51     <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec
52     </sonar.jacoco.reportPath>
53     <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec
54     </sonar.jacoco.itReportPath>
55     <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
56     <sonar.projectVersion>${project.version}</sonar.projectVersion>
57     <sonar.coverage.exclusions>**/model/**/*</sonar.coverage.exclusions>
58   </properties>
59
60   <!--<repositories>-->
61   <!--<repository>-->
62   <!--<id>maven2-repository.java.net</id>-->
63   <!--<name>Java.net Repository for Maven</name>-->
64   <!--<url>http://download.java.net/maven/2/</url>-->
65   <!--<layout>default</layout>-->
66   <!--</repository>-->
67   <!--<repository>-->
68   <!--<id>ecomp-release</id>-->
69   <!--<name>Snapshot Repository</name>-->
70   <!--<url>https://nexus.onap.org/content/repositories/releases/</url>-->
71   <!--</repository>-->
72   <!--<repository>-->
73   <!--<id>ecomp-staging</id>-->
74   <!--<name>Staging Repository</name>-->
75   <!--<url>https://nexus.onap.org/content/repositories/staging/</url>-->
76   <!--</repository>-->
77   <!--<repository>-->
78   <!--<id>ecomp-snapshots</id>-->
79   <!--<name>Snapshot Repository</name>-->
80   <!--<url>https://nexus.onap.org/content/repositories/snapshots/</url>-->
81   <!--</repository>-->
82   <!--</repositories>-->
83
84   <distributionManagement>
85     <repository>
86       <id>ecomp-releases</id>
87       <name>Release Repository</name>
88       <url>${nexusproxy}/${releaseNexusPath}</url>
89     </repository>
90     <snapshotRepository>
91       <id>ecomp-snapshots</id>
92       <name>Snapshot Repository</name>
93       <url>${nexusproxy}/${snapshotNexusPath}</url>
94     </snapshotRepository>
95   </distributionManagement>
96
97   <licenses>
98     <license>
99       <name>Apache2</name>
100       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
101     </license>
102   </licenses>
103
104   <dependencyManagement>
105     <dependencies>
106       <dependency>
107         <groupId>org.springframework.boot</groupId>
108         <artifactId>spring-boot-dependencies</artifactId>
109         <version>2.1.4.RELEASE</version>
110         <type>pom</type>
111         <scope>import</scope>
112       </dependency>
113     </dependencies>
114   </dependencyManagement>
115
116   <dependencies>
117
118     <dependency>
119       <groupId>org.springframework.boot</groupId>
120       <artifactId>spring-boot-starter-web</artifactId>
121       <exclusions>
122         <exclusion>
123           <groupId>org.apache.tomcat.embed</groupId>
124           <artifactId>tomcat-embed-core</artifactId>
125         </exclusion>
126       </exclusions>
127     </dependency>
128
129     <dependency>
130       <groupId>org.apache.tomcat.embed</groupId>
131       <artifactId>tomcat-embed-core</artifactId>
132       <version>9.0.19</version>
133     </dependency>
134
135     <dependency>
136       <groupId>org.springframework.boot</groupId>
137       <artifactId>spring-boot-starter-data-jpa</artifactId>
138     </dependency>
139
140     <dependency>
141       <groupId>org.springframework.boot</groupId>
142       <artifactId>spring-boot-starter-aop</artifactId>
143     </dependency>
144
145     <dependency>
146       <groupId>org.apache.commons</groupId>
147       <artifactId>commons-io</artifactId>
148       <version>1.3.2</version>
149     </dependency>
150
151     <dependency>
152       <groupId>commons-beanutils</groupId>
153       <artifactId>commons-beanutils</artifactId>
154       <version>1.9.3</version>
155     </dependency>
156
157     <dependency>
158       <groupId>javax.validation</groupId>
159       <artifactId>validation-api</artifactId>
160     </dependency>
161
162     <dependency>
163       <groupId>org.apache.commons</groupId>
164       <artifactId>commons-lang3</artifactId>
165     </dependency>
166
167     <!-- mongo -->
168
169     <dependency>
170       <groupId>org.springframework.boot</groupId>
171       <artifactId>spring-boot-starter-data-mongodb</artifactId>
172     </dependency>
173
174     <!-- mysql -->
175
176     <dependency>
177       <groupId>org.mariadb.jdbc</groupId>
178       <artifactId>mariadb-java-client</artifactId>
179     </dependency>
180
181     <!-- swagger -->
182
183     <dependency>
184       <groupId>io.swagger</groupId>
185       <artifactId>swagger-annotations</artifactId>
186       <version>1.5.18</version>
187     </dependency>
188
189     <!-- swagger core -->
190     <dependency>
191       <groupId>io.swagger</groupId>
192       <artifactId>swagger-core</artifactId>
193       <version>1.5.18</version>
194     </dependency>
195
196     <!-- jackson -->
197
198     <dependency>
199       <groupId>com.fasterxml.jackson.dataformat</groupId>
200       <artifactId>jackson-dataformat-yaml</artifactId>
201     </dependency>
202
203     <!-- sdc tosca parser -->
204
205     <dependency>
206       <groupId>org.onap.sdc.sdc-tosca</groupId>
207       <artifactId>sdc-tosca</artifactId>
208       <version>1.4.6</version>
209       <exclusions>
210         <exclusion>
211           <groupId>com.google.guava</groupId>
212           <artifactId>guava</artifactId>
213         </exclusion>
214         <exclusion>
215           <groupId>commons-codec</groupId>
216           <artifactId>commons-codec</artifactId>
217         </exclusion>
218       </exclusions>
219     </dependency>
220
221     <dependency>
222       <groupId>commons-codec</groupId>
223       <artifactId>commons-codec</artifactId>
224       <version>1.12</version>
225     </dependency>
226
227     <!-- jolt -->
228
229     <dependency>
230       <groupId>com.bazaarvoice.jolt</groupId>
231       <artifactId>jolt-core</artifactId>
232       <version>0.1.0</version>
233       <exclusions>
234         <exclusion>
235           <groupId>com.fasterxml.jackson.core</groupId>
236           <artifactId>jackson-databind</artifactId>
237         </exclusion>
238       </exclusions>
239     </dependency>
240
241     <dependency>
242       <groupId>com.bazaarvoice.jolt</groupId>
243       <artifactId>json-utils</artifactId>
244       <version>0.1.0</version>
245       <exclusions>
246         <exclusion>
247           <groupId>com.fasterxml.jackson.core</groupId>
248           <artifactId>jackson-databind</artifactId>
249         </exclusion>
250       </exclusions>
251     </dependency>
252
253     <!-- test -->
254
255     <dependency>
256       <groupId>org.springframework.boot</groupId>
257       <artifactId>spring-boot-starter-test</artifactId>
258       <scope>test</scope>
259     </dependency>
260
261     <!-- test h2 -->
262
263     <dependency>
264       <groupId>com.h2database</groupId>
265       <artifactId>h2</artifactId>
266       <scope>test</scope>
267     </dependency>
268
269     <dependency>
270       <groupId>de.flapdoodle.embed</groupId>
271       <artifactId>de.flapdoodle.embed.mongo</artifactId>
272       <scope>test</scope>
273     </dependency>
274
275     <!-- test wiremock -->
276
277     <dependency>
278       <groupId>org.springframework.cloud</groupId>
279       <artifactId>spring-cloud-contract-wiremock</artifactId>
280       <version>1.2.6.RELEASE</version>
281       <scope>test</scope>
282       <exclusions>
283         <exclusion>
284           <groupId>com.fasterxml.jackson.core</groupId>
285           <artifactId>jackson-databind</artifactId>
286         </exclusion>
287         <exclusion>
288           <groupId>commons-codec</groupId>
289           <artifactId>commons-codec</artifactId>
290         </exclusion>
291       </exclusions>
292     </dependency>
293
294     <dependency>
295       <groupId>org.eclipse.jetty</groupId>
296       <artifactId>jetty-servlet</artifactId>
297       <scope>test</scope>
298     </dependency>
299
300     <dependency>
301       <groupId>org.eclipse.jetty</groupId>
302       <artifactId>jetty-servlets</artifactId>
303       <scope>test</scope>
304     </dependency>
305
306     <!-- runtime dev -->
307
308     <dependency>
309       <groupId>org.springframework.boot</groupId>
310       <artifactId>spring-boot-devtools</artifactId>
311       <scope>runtime</scope>
312     </dependency>
313
314     <!-- MSB SDK -->
315     <dependency>
316       <groupId>org.onap.msb.java-sdk</groupId>
317       <artifactId>msb-java-sdk</artifactId>
318       <version>1.1.1</version>
319       <exclusions>
320         <exclusion>
321           <groupId>com.google.guava</groupId>
322           <artifactId>guava</artifactId>
323         </exclusion>
324         <exclusion>
325           <groupId>com.squareup.okhttp3</groupId>
326           <artifactId>okhttp</artifactId>
327         </exclusion>
328       </exclusions>
329     </dependency>
330
331     <dependency>
332       <groupId>com.squareup.okhttp3</groupId>
333       <artifactId>okhttp</artifactId>
334       <version>3.14.1</version>
335     </dependency>
336
337     <dependency>
338       <groupId>com.google.guava</groupId>
339       <artifactId>guava</artifactId>
340     </dependency>
341
342     <!-- karate -->
343
344     <dependency>
345       <groupId>com.intuit.karate</groupId>
346       <artifactId>karate-junit4</artifactId>
347       <version>0.9.0</version>
348       <scope>test</scope>
349     </dependency>
350
351     <dependency>
352       <groupId>com.intuit.karate</groupId>
353       <artifactId>karate-apache</artifactId>
354       <version>0.9.0</version>
355       <scope>test</scope>
356     </dependency>
357
358   </dependencies>
359
360   <build>
361     <testResources>
362       <testResource>
363         <directory>src/test/java</directory>
364         <excludes>
365           <exclude>**/*.java</exclude>
366         </excludes>
367       </testResource>
368       <testResource>
369         <directory>src/test/resources</directory>
370       </testResource>
371     </testResources>
372     <plugins>
373       <plugin>
374         <groupId>org.springframework.boot</groupId>
375         <artifactId>spring-boot-maven-plugin</artifactId>
376         <executions>
377           <execution>
378             <goals>
379               <goal>repackage</goal>
380             </goals>
381             <configuration>
382               <mainClass>org.onap.nbi.Application</mainClass>
383             </configuration>
384           </execution>
385         </executions>
386       </plugin>
387       <plugin>
388         <groupId>org.apache.maven.plugins</groupId>
389         <artifactId>maven-surefire-plugin</artifactId>
390         <configuration>
391           <includes>
392             <include>org/onap/nbi/test/KarateApiTest.java</include>
393             <include>org/onap/nbi/test/ExecutionTaskTest.java</include>
394             <include>org/onap/nbi/test/ServiceOrderRepositoryTest.java</include>
395             <include>org/onap/nbi/apis/servicecatalog/ToscaInfosProcessorTest.java</include>
396           </includes>
397         </configuration>
398       </plugin>
399       <plugin>
400         <groupId>org.apache.maven.plugins</groupId>
401         <artifactId>maven-site-plugin</artifactId>
402         <dependencies>
403           <dependency>
404             <groupId>org.apache.maven.wagon</groupId>
405             <artifactId>wagon-webdav-jackrabbit</artifactId>
406             <version>2.10</version>
407           </dependency>
408         </dependencies>
409       </plugin>
410       <plugin>
411         <groupId>com.mycila</groupId>
412         <artifactId>license-maven-plugin</artifactId>
413         <version>3.0</version>
414         <configuration>
415           <header>LICENSE.TXT</header>
416           <includes>
417             <include>restclient/**</include>
418             <include>src/**</include>
419             <include>./**/*.xml</include>
420             <include>./**/*.xml</include>
421             <include>./**/*.yml</include>
422             <include>./**/*.yaml</include>
423           </includes>
424           <excludes>
425             <!-- karate-config.js doesn't support comment, and is mandatory by
426               karate -->
427             <exclude>src/test/java/karate-config.js</exclude>
428           </excludes>
429           <skipExistingHeaders>true</skipExistingHeaders>
430           <skip>false</skip>
431           <mapping>
432             <http>SCRIPT_STYLE</http>
433           </mapping>
434         </configuration>
435         <executions>
436           <execution>
437             <goals>
438               <!-- Set goal to "format" to auto update license headers -->
439               <goal>check</goal>
440             </goals>
441             <phase>process-sources</phase>
442           </execution>
443         </executions>
444       </plugin>
445       <plugin>
446         <groupId>org.codehaus.mojo</groupId>
447         <artifactId>sonar-maven-plugin</artifactId>
448         <version>3.2</version>
449       </plugin>
450       <!--       <plugin> -->
451       <!--         <groupId>org.jacoco</groupId> -->
452       <!--         <artifactId>jacoco-maven-plugin</artifactId> -->
453       <!--         <version>0.8.1</version> -->
454       <!--         <configuration> -->
455       <!--           <dumpOnExit>true</dumpOnExit> -->
456       <!--           <includes> -->
457       <!--             <include>org.onap.nbi.*</include> -->
458       <!--           </includes> -->
459       <!--           <excludes> -->
460       <!--             <exclude>**/model/**/*</exclude> -->
461       <!--           </excludes> -->
462       <!--         </configuration> -->
463       <!--         <executions> -->
464       <!--           <execution> -->
465       <!--             <id>pre-unit-test</id> -->
466       <!--             <goals> -->
467       <!--               <goal>prepare-agent</goal> -->
468       <!--             </goals> -->
469       <!--             <configuration> -->
470       <!--               <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile> -->
471       <!--               <append>true</append> -->
472       <!--             </configuration> -->
473       <!--           </execution> -->
474       <!--           <execution> -->
475       <!--             <id>pre-integration-test</id> -->
476       <!--             <phase>pre-integration-test</phase> -->
477       <!--             <goals> -->
478       <!--               <goal>prepare-agent</goal> -->
479       <!--             </goals> -->
480       <!--             <configuration> -->
481       <!--               <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile> -->
482       <!--               <append>true</append> -->
483       <!--             </configuration> -->
484       <!--           </execution> -->
485       <!--           <execution> -->
486       <!--             <goals> -->
487       <!--               <goal>merge</goal> -->
488       <!--             </goals> -->
489       <!--             <phase>post-integration-test</phase> -->
490       <!--             <configuration> -->
491       <!--               <fileSets> -->
492       <!--                 <fileSet -->
493       <!--                   implementation="org.apache.maven.shared.model.fileset.FileSet"> -->
494       <!--                   <directory>${project.build.directory}/coverage-reports</directory> -->
495       <!--                   <includes> -->
496       <!--                     <include>*.exec</include> -->
497       <!--                   </includes> -->
498       <!--                 </fileSet> -->
499       <!--               </fileSets> -->
500       <!--               <destFile>${project.build.directory}/jacoco-dev.exec</destFile> -->
501       <!--             </configuration> -->
502       <!--           </execution> -->
503       <!--         </executions> -->
504       <!--       </plugin> -->
505       <plugin>
506         <artifactId>maven-source-plugin</artifactId>
507         <executions>
508           <execution>
509             <id>attach-sources</id>
510             <phase>deploy</phase>
511             <goals>
512               <goal>jar-no-fork</goal>
513             </goals>
514           </execution>
515         </executions>
516       </plugin>
517     </plugins>
518   </build>
519
520
521   <profiles>
522     <profile>
523       <id>docker</id>
524       <build>
525         <plugins>
526           <plugin>
527             <groupId>io.fabric8</groupId>
528             <artifactId>docker-maven-plugin</artifactId>
529             <version>0.28.0</version>
530             <configuration>
531               <verbose>true</verbose>
532               <apiVersion>1.23</apiVersion>
533               <pullRegistry>${docker.pull.registry}</pullRegistry>
534               <pushRegistry>${docker.push.registry}</pushRegistry>
535               <images>
536                 <image>
537                   <name>onap/externalapi/nbi:${docker.tag}</name>
538                   <build>
539                     <cleanup>true</cleanup>
540                     <tags>
541                       <tag>latest</tag>
542                       <tag>${docker.latest.tag}</tag>
543                     </tags>
544                     <dockerFileDir>${project.basedir}</dockerFileDir>
545                     <args>
546                       <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
547                     </args>
548                   </build>
549                 </image>
550               </images>
551             </configuration>
552             <executions>
553               <execution>
554                 <id>clean-images</id>
555                 <phase>pre-clean</phase>
556                 <goals>
557                   <goal>remove</goal>
558                 </goals>
559                 <configuration>
560                   <removeMode>all</removeMode>
561                 </configuration>
562               </execution>
563               <execution>
564                 <id>generate-images</id>
565                 <phase>package</phase>
566                 <goals>
567                   <goal>build</goal>
568                 </goals>
569               </execution>
570               <execution>
571                 <id>push-images</id>
572                 <phase>deploy</phase>
573                 <goals>
574                   <goal>push</goal>
575                 </goals>
576               </execution>
577             </executions>
578           </plugin>
579         </plugins>
580       </build>
581     </profile>
582     <profile>
583       <id>onap-settings</id>
584       <properties>
585         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
586         <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw
587         </onap.nexus.rawrepo.baseurl.upload>
588         <onap.nexus.rawrepo.baseurl.download>
589           https://nexus.onap.org/service/local/repositories/raw/content
590         </onap.nexus.rawrepo.baseurl.download>
591         <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid>
592
593         <!-- properties for Nexus Docker registry -->
594         <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily>
595         <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release>
596         <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
597         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
598       </properties>
599     </profile>
600     <profile>
601       <id>onap-snapshots</id>
602       <repositories>
603         <repository>
604           <id>onap-snapshots</id>
605           <name>onap-snapshots</name>
606           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
607           <releases>
608             <enabled>false</enabled>
609           </releases>
610           <snapshots>
611             <enabled>true</enabled>
612           </snapshots>
613         </repository>
614       </repositories>
615       <pluginRepositories>
616         <pluginRepository>
617           <id>onap-snapshots</id>
618           <name>onap-snapshots</name>
619           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
620           <releases>
621             <enabled>false</enabled>
622           </releases>
623           <snapshots>
624             <enabled>true</enabled>
625           </snapshots>
626         </pluginRepository>
627       </pluginRepositories>
628     </profile>
629     <profile>
630       <id>onap-releases</id>
631       <repositories>
632         <repository>
633           <id>onap-releases</id>
634           <name>onap-releases</name>
635           <url>https://nexus.onap.org/content/repositories/releases/</url>
636           <releases>
637             <enabled>true</enabled>
638           </releases>
639           <snapshots>
640             <enabled>false</enabled>
641           </snapshots>
642         </repository>
643       </repositories>
644       <pluginRepositories>
645         <pluginRepository>
646           <id>onap-releases</id>
647           <name>onap-releases</name>
648           <url>https://nexus.onap.org/content/repositories/releases/</url>
649           <releases>
650             <enabled>true</enabled>
651           </releases>
652           <snapshots>
653             <enabled>false</enabled>
654           </snapshots>
655         </pluginRepository>
656       </pluginRepositories>
657     </profile>
658     <profile>
659       <id>onap-public</id>
660       <repositories>
661         <repository>
662           <id>central</id>
663           <url>http://repo1.maven.org/maven2/</url>
664         </repository>
665         <repository>
666           <id>onap-public</id>
667           <name>onap-public</name>
668           <url>https://nexus.onap.org/content/repositories/public/</url>
669           <releases>
670             <enabled>true</enabled>
671           </releases>
672           <snapshots>
673             <enabled>false</enabled>
674           </snapshots>
675         </repository>
676       </repositories>
677       <pluginRepositories>
678         <pluginRepository>
679           <id>central</id>
680           <url>http://repo1.maven.org/maven2/</url>
681         </pluginRepository>
682         <pluginRepository>
683           <id>onap-public</id>
684           <name>onap-public</name>
685           <url>https://nexus.onap.org/content/repositories/public/</url>
686           <releases>
687             <enabled>true</enabled>
688           </releases>
689           <snapshots>
690             <enabled>false</enabled>
691           </snapshots>
692         </pluginRepository>
693       </pluginRepositories>
694     </profile>
695   </profiles>
696
697 </project>