Merge "Update the version as per Jims request, El Alto Early drop 5.0.0"
[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>5.0.0-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         <version>2.22.0</version>
391         <configuration>
392 <!--          <argLine>-->
393 <!--            &#45;&#45;illegal-access=permit-->
394 <!--          </argLine>-->
395           <includes>
396             <include>org/onap/nbi/test/KarateApiTest.java</include>
397             <include>org/onap/nbi/test/ExecutionTaskTest.java</include>
398             <include>org/onap/nbi/test/ServiceOrderRepositoryTest.java</include>
399             <include>org/onap/nbi/apis/servicecatalog/ToscaInfosProcessorTest.java</include>
400           </includes>
401         </configuration>
402       </plugin>
403       <plugin>
404         <groupId>org.apache.maven.plugins</groupId>
405         <artifactId>maven-site-plugin</artifactId>
406         <dependencies>
407           <dependency>
408             <groupId>org.apache.maven.wagon</groupId>
409             <artifactId>wagon-webdav-jackrabbit</artifactId>
410             <version>2.10</version>
411           </dependency>
412         </dependencies>
413       </plugin>
414       <plugin>
415         <groupId>com.mycila</groupId>
416         <artifactId>license-maven-plugin</artifactId>
417         <version>3.0</version>
418         <configuration>
419           <header>LICENSE.TXT</header>
420           <includes>
421             <include>restclient/**</include>
422             <include>src/**</include>
423             <include>./**/*.xml</include>
424             <include>./**/*.xml</include>
425             <include>./**/*.yml</include>
426             <include>./**/*.yaml</include>
427           </includes>
428           <excludes>
429             <!-- karate-config.js doesn't support comment, and is mandatory by
430               karate -->
431             <exclude>src/test/java/karate-config.js</exclude>
432           </excludes>
433           <skipExistingHeaders>true</skipExistingHeaders>
434           <skip>false</skip>
435           <mapping>
436             <http>SCRIPT_STYLE</http>
437           </mapping>
438         </configuration>
439         <executions>
440           <execution>
441             <goals>
442               <!-- Set goal to "format" to auto update license headers -->
443               <goal>check</goal>
444             </goals>
445             <phase>process-sources</phase>
446           </execution>
447         </executions>
448       </plugin>
449       <plugin>
450         <groupId>org.codehaus.mojo</groupId>
451         <artifactId>sonar-maven-plugin</artifactId>
452         <version>3.2</version>
453       </plugin>
454       <plugin>
455         <groupId>org.jacoco</groupId>
456         <artifactId>jacoco-maven-plugin</artifactId>
457         <version>0.8.1</version>
458         <configuration>
459           <dumpOnExit>true</dumpOnExit>
460           <includes>
461             <include>org.onap.nbi.*</include>
462           </includes>
463           <excludes>
464             <exclude>**/model/**/*</exclude>
465           </excludes>
466         </configuration>
467         <executions>
468           <execution>
469             <id>pre-unit-test</id>
470             <goals>
471               <goal>prepare-agent</goal>
472             </goals>
473             <configuration>
474               <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
475             </configuration>
476           </execution>
477           <execution>
478             <id>pre-integration-test</id>
479             <phase>pre-integration-test</phase>
480             <goals>
481               <goal>prepare-agent</goal>
482             </goals>
483             <configuration>
484               <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
485             </configuration>
486           </execution>
487           <execution>
488             <goals>
489               <goal>merge</goal>
490             </goals>
491             <phase>post-integration-test</phase>
492             <configuration>
493               <fileSets>
494                 <fileSet
495                   implementation="org.apache.maven.shared.model.fileset.FileSet">
496                   <directory>${project.build.directory}/coverage-reports</directory>
497                   <includes>
498                     <include>*.exec</include>
499                   </includes>
500                 </fileSet>
501               </fileSets>
502               <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
503             </configuration>
504           </execution>
505         </executions>
506       </plugin>
507       <plugin>
508         <artifactId>maven-source-plugin</artifactId>
509         <executions>
510           <execution>
511             <id>attach-sources</id>
512             <phase>deploy</phase>
513             <goals>
514               <goal>jar-no-fork</goal>
515             </goals>
516           </execution>
517         </executions>
518       </plugin>
519     </plugins>
520   </build>
521
522   <profiles>
523     <profile>
524       <id>docker</id>
525       <build>
526         <plugins>
527           <plugin>
528             <groupId>io.fabric8</groupId>
529             <artifactId>docker-maven-plugin</artifactId>
530             <version>0.28.0</version>
531             <configuration>
532               <verbose>true</verbose>
533               <apiVersion>1.23</apiVersion>
534               <pullRegistry>${docker.pull.registry}</pullRegistry>
535               <pushRegistry>${docker.push.registry}</pushRegistry>
536               <images>
537                 <image>
538                   <name>onap/externalapi/nbi:${docker.tag}</name>
539                   <build>
540                     <cleanup>true</cleanup>
541                     <tags>
542                       <tag>latest</tag>
543                       <tag>${docker.latest.tag}</tag>
544                     </tags>
545                     <dockerFileDir>${project.basedir}</dockerFileDir>
546                     <args>
547                       <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
548                     </args>
549                   </build>
550                 </image>
551               </images>
552             </configuration>
553             <executions>
554               <execution>
555                 <id>clean-images</id>
556                 <phase>pre-clean</phase>
557                 <goals>
558                   <goal>remove</goal>
559                 </goals>
560                 <configuration>
561                   <removeMode>all</removeMode>
562                 </configuration>
563               </execution>
564               <execution>
565                 <id>generate-images</id>
566                 <phase>package</phase>
567                 <goals>
568                   <goal>build</goal>
569                 </goals>
570               </execution>
571               <execution>
572                 <id>push-images</id>
573                 <phase>deploy</phase>
574                 <goals>
575                   <goal>push</goal>
576                 </goals>
577               </execution>
578             </executions>
579           </plugin>
580         </plugins>
581       </build>
582     </profile>
583     <profile>
584       <id>onap-settings</id>
585       <properties>
586         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
587         <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw
588         </onap.nexus.rawrepo.baseurl.upload>
589         <onap.nexus.rawrepo.baseurl.download>
590           https://nexus.onap.org/service/local/repositories/raw/content
591         </onap.nexus.rawrepo.baseurl.download>
592         <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid>
593
594         <!-- properties for Nexus Docker registry -->
595         <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily>
596         <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release>
597         <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
598         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
599       </properties>
600     </profile>
601     <profile>
602       <id>onap-snapshots</id>
603       <repositories>
604         <repository>
605           <id>onap-snapshots</id>
606           <name>onap-snapshots</name>
607           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
608           <releases>
609             <enabled>false</enabled>
610           </releases>
611           <snapshots>
612             <enabled>true</enabled>
613           </snapshots>
614         </repository>
615       </repositories>
616       <pluginRepositories>
617         <pluginRepository>
618           <id>onap-snapshots</id>
619           <name>onap-snapshots</name>
620           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
621           <releases>
622             <enabled>false</enabled>
623           </releases>
624           <snapshots>
625             <enabled>true</enabled>
626           </snapshots>
627         </pluginRepository>
628       </pluginRepositories>
629     </profile>
630     <profile>
631       <id>onap-releases</id>
632       <repositories>
633         <repository>
634           <id>onap-releases</id>
635           <name>onap-releases</name>
636           <url>https://nexus.onap.org/content/repositories/releases/</url>
637           <releases>
638             <enabled>true</enabled>
639           </releases>
640           <snapshots>
641             <enabled>false</enabled>
642           </snapshots>
643         </repository>
644       </repositories>
645       <pluginRepositories>
646         <pluginRepository>
647           <id>onap-releases</id>
648           <name>onap-releases</name>
649           <url>https://nexus.onap.org/content/repositories/releases/</url>
650           <releases>
651             <enabled>true</enabled>
652           </releases>
653           <snapshots>
654             <enabled>false</enabled>
655           </snapshots>
656         </pluginRepository>
657       </pluginRepositories>
658     </profile>
659     <profile>
660       <id>onap-public</id>
661       <repositories>
662         <repository>
663           <id>central</id>
664           <url>http://repo1.maven.org/maven2/</url>
665         </repository>
666         <repository>
667           <id>onap-public</id>
668           <name>onap-public</name>
669           <url>https://nexus.onap.org/content/repositories/public/</url>
670           <releases>
671             <enabled>true</enabled>
672           </releases>
673           <snapshots>
674             <enabled>false</enabled>
675           </snapshots>
676         </repository>
677       </repositories>
678       <pluginRepositories>
679         <pluginRepository>
680           <id>central</id>
681           <url>http://repo1.maven.org/maven2/</url>
682         </pluginRepository>
683         <pluginRepository>
684           <id>onap-public</id>
685           <name>onap-public</name>
686           <url>https://nexus.onap.org/content/repositories/public/</url>
687           <releases>
688             <enabled>true</enabled>
689           </releases>
690           <snapshots>
691             <enabled>false</enabled>
692           </snapshots>
693         </pluginRepository>
694       </pluginRepositories>
695     </profile>
696   </profiles>
697
698 </project>