Fix broken sonar code coverage
[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             </configuration>
472           </execution>
473           <execution>
474             <id>pre-integration-test</id>
475             <phase>pre-integration-test</phase>
476             <goals>
477               <goal>prepare-agent</goal>
478             </goals>
479             <configuration>
480               <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
481             </configuration>
482           </execution>
483           <execution>
484             <goals>
485               <goal>merge</goal>
486             </goals>
487             <phase>post-integration-test</phase>
488             <configuration>
489               <fileSets>
490                 <fileSet
491                   implementation="org.apache.maven.shared.model.fileset.FileSet">
492                   <directory>${project.build.directory}/coverage-reports</directory>
493                   <includes>
494                     <include>*.exec</include>
495                   </includes>
496                 </fileSet>
497               </fileSets>
498               <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
499             </configuration>
500           </execution>
501         </executions>
502       </plugin>
503       <plugin>
504         <artifactId>maven-source-plugin</artifactId>
505         <executions>
506           <execution>
507             <id>attach-sources</id>
508             <phase>deploy</phase>
509             <goals>
510               <goal>jar-no-fork</goal>
511             </goals>
512           </execution>
513         </executions>
514       </plugin>
515     </plugins>
516   </build>
517
518   <profiles>
519     <profile>
520       <id>docker</id>
521       <build>
522         <plugins>
523           <plugin>
524             <groupId>io.fabric8</groupId>
525             <artifactId>docker-maven-plugin</artifactId>
526             <version>0.28.0</version>
527             <configuration>
528               <verbose>true</verbose>
529               <apiVersion>1.23</apiVersion>
530               <pullRegistry>${docker.pull.registry}</pullRegistry>
531               <pushRegistry>${docker.push.registry}</pushRegistry>
532               <images>
533                 <image>
534                   <name>onap/externalapi/nbi:${docker.tag}</name>
535                   <build>
536                     <cleanup>true</cleanup>
537                     <tags>
538                       <tag>latest</tag>
539                       <tag>${docker.latest.tag}</tag>
540                     </tags>
541                     <dockerFileDir>${project.basedir}</dockerFileDir>
542                     <args>
543                       <PKG_FILENAME>${project.build.finalName}.${project.packaging}</PKG_FILENAME>
544                     </args>
545                   </build>
546                 </image>
547               </images>
548             </configuration>
549             <executions>
550               <execution>
551                 <id>clean-images</id>
552                 <phase>pre-clean</phase>
553                 <goals>
554                   <goal>remove</goal>
555                 </goals>
556                 <configuration>
557                   <removeMode>all</removeMode>
558                 </configuration>
559               </execution>
560               <execution>
561                 <id>generate-images</id>
562                 <phase>package</phase>
563                 <goals>
564                   <goal>build</goal>
565                 </goals>
566               </execution>
567               <execution>
568                 <id>push-images</id>
569                 <phase>deploy</phase>
570                 <goals>
571                   <goal>push</goal>
572                 </goals>
573               </execution>
574             </executions>
575           </plugin>
576         </plugins>
577       </build>
578     </profile>
579     <profile>
580       <id>onap-settings</id>
581       <properties>
582         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
583         <onap.nexus.rawrepo.baseurl.upload>https://nexus.onap.org/content/sites/raw
584         </onap.nexus.rawrepo.baseurl.upload>
585         <onap.nexus.rawrepo.baseurl.download>
586           https://nexus.onap.org/service/local/repositories/raw/content
587         </onap.nexus.rawrepo.baseurl.download>
588         <onap.nexus.rawrepo.serverid>ecomp-raw</onap.nexus.rawrepo.serverid>
589
590         <!-- properties for Nexus Docker registry -->
591         <onap.nexus.dockerregistry.daily>nexus3.onap.org:10003</onap.nexus.dockerregistry.daily>
592         <onap.nexus.dockerregistry.release>nexus3.onap.org:10002</onap.nexus.dockerregistry.release>
593         <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
594         <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
595       </properties>
596     </profile>
597     <profile>
598       <id>onap-snapshots</id>
599       <repositories>
600         <repository>
601           <id>onap-snapshots</id>
602           <name>onap-snapshots</name>
603           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
604           <releases>
605             <enabled>false</enabled>
606           </releases>
607           <snapshots>
608             <enabled>true</enabled>
609           </snapshots>
610         </repository>
611       </repositories>
612       <pluginRepositories>
613         <pluginRepository>
614           <id>onap-snapshots</id>
615           <name>onap-snapshots</name>
616           <url>https://nexus.onap.org/content/repositories/snapshots/</url>
617           <releases>
618             <enabled>false</enabled>
619           </releases>
620           <snapshots>
621             <enabled>true</enabled>
622           </snapshots>
623         </pluginRepository>
624       </pluginRepositories>
625     </profile>
626     <profile>
627       <id>onap-releases</id>
628       <repositories>
629         <repository>
630           <id>onap-releases</id>
631           <name>onap-releases</name>
632           <url>https://nexus.onap.org/content/repositories/releases/</url>
633           <releases>
634             <enabled>true</enabled>
635           </releases>
636           <snapshots>
637             <enabled>false</enabled>
638           </snapshots>
639         </repository>
640       </repositories>
641       <pluginRepositories>
642         <pluginRepository>
643           <id>onap-releases</id>
644           <name>onap-releases</name>
645           <url>https://nexus.onap.org/content/repositories/releases/</url>
646           <releases>
647             <enabled>true</enabled>
648           </releases>
649           <snapshots>
650             <enabled>false</enabled>
651           </snapshots>
652         </pluginRepository>
653       </pluginRepositories>
654     </profile>
655     <profile>
656       <id>onap-public</id>
657       <repositories>
658         <repository>
659           <id>central</id>
660           <url>http://repo1.maven.org/maven2/</url>
661         </repository>
662         <repository>
663           <id>onap-public</id>
664           <name>onap-public</name>
665           <url>https://nexus.onap.org/content/repositories/public/</url>
666           <releases>
667             <enabled>true</enabled>
668           </releases>
669           <snapshots>
670             <enabled>false</enabled>
671           </snapshots>
672         </repository>
673       </repositories>
674       <pluginRepositories>
675         <pluginRepository>
676           <id>central</id>
677           <url>http://repo1.maven.org/maven2/</url>
678         </pluginRepository>
679         <pluginRepository>
680           <id>onap-public</id>
681           <name>onap-public</name>
682           <url>https://nexus.onap.org/content/repositories/public/</url>
683           <releases>
684             <enabled>true</enabled>
685           </releases>
686           <snapshots>
687             <enabled>false</enabled>
688           </snapshots>
689         </pluginRepository>
690       </pluginRepositories>
691     </profile>
692   </profiles>
693
694 </project>