Merge "Fix NPE for GenericVnfHealthCheckBB"
[so.git] / pom.xml
1 <?xml version="1.0" ?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.onap.oparent</groupId>
7     <artifactId>oparent</artifactId>
8     <version>2.1.0</version>
9     <relativePath />
10   </parent>
11   <groupId>org.onap.so</groupId>
12   <artifactId>so</artifactId>
13   <packaging>pom</packaging>
14   <version>1.9.0-SNAPSHOT</version>
15   <name>so</name>
16   <description>This Maven project is responsible to build and package all child projects - contributions in the MSO project.
17         This build can be configured to run Functional tests and to start/stop a jboss server + Mysql DB.
18         "mvn clean install -P with-integration-tests -Dintegration-tests-user=root -Dintegration-tests-group=root -Dintegration-tests-db-type=MYSQL"
19         </description>
20   <organization>
21     <name>ONAP - SO</name>
22     <url>http://www.onap.org/</url>
23   </organization>
24   <modules>
25     <module>deployment-configs</module>
26     <module>common</module>
27     <module>graph-inventory</module>
28     <module>mso-catalog-db</module>
29     <module>mso-api-handlers</module>
30     <module>adapters</module>
31     <module>asdc-controller</module>
32     <module>so-optimization-clients</module>
33     <module>so-sdn-clients</module>
34     <module>bpmn</module>
35     <module>cxf-logging</module>
36     <module>so-simulator</module>
37     <module>packages</module>
38   </modules>
39   <properties>
40     <project.mso.base.folder>.</project.mso.base.folder>
41     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43     <sonar.language>java</sonar.language>
44     <java.version>11</java.version>
45     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
46     <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
47     <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
48     <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
49     <sonar.projectVersion>${project.version}</sonar.projectVersion>
50     <sonar.cpd.exclusions>**/*</sonar.cpd.exclusions>
51     <org.apache.maven.user-settings />
52     <openstack.version>1.7.1</openstack.version>
53     <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
54     <originalClassifier>original</originalClassifier>
55     <docker.skip>true</docker.skip>
56     <docker.skip.build>true</docker.skip.build>
57     <docker.skip.push>true</docker.skip.push>
58     <docker.buildArg.project_version>${project.version}</docker.buildArg.project_version>
59     <docker.buildArg.artifact_id>${project.artifactId}</docker.buildArg.artifact_id>
60     <docker.buildArg.docker_repository>${dockerPullRepo}</docker.buildArg.docker_repository>
61     <enforcer.skip>false</enforcer.skip>
62     <nexusproxy>https://nexus.onap.org</nexusproxy>
63     <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
64     <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
65     <publicNexusPath>content/repositories/public/</publicNexusPath>
66     <siteNexusPath>content/sites/site/org/onap/so/${project.version}/</siteNexusPath>
67     <cxf.version>3.4.1</cxf.version>
68     <jax.ws.rs>2.1</jax.ws.rs>
69     <springboot.version>2.3.7.RELEASE</springboot.version>
70     <aaf.version>2.1.21</aaf.version>
71     <format.skipValidate>false</format.skipValidate>
72     <format.skipExecute>true</format.skipExecute>
73     <io.fabric8.version>0.33.0</io.fabric8.version>
74     <appc.client.version>1.7.2</appc.client.version>
75     <bowman.client.version>0.9.0</bowman.client.version>
76     <aaf.cadi.version>2.1.15</aaf.cadi.version>
77     <so-etsi-sol003-adapter-version>1.8.1-SNAPSHOT</so-etsi-sol003-adapter-version>
78     <onap-logging-version>1.6.9</onap-logging-version>
79   </properties>
80   <distributionManagement>
81     <repository>
82       <id>ecomp-releases</id>
83       <url>${nexusproxy}/${releaseNexusPath}</url>
84     </repository>
85     <snapshotRepository>
86       <id>ecomp-snapshots</id>
87       <url>${nexusproxy}/${snapshotNexusPath}</url>
88     </snapshotRepository>
89     <site>
90       <id>ecomp-site</id>
91       <url>dav:${nexusproxy}${siteNexusPath}</url>
92     </site>
93   </distributionManagement>
94   <reporting>
95     <plugins>
96       <plugin>
97         <groupId>org.apache.maven.plugins</groupId>
98         <artifactId>maven-javadoc-plugin</artifactId>
99         <version>2.10.4</version>
100         <configuration>
101           <failOnError>false</failOnError>
102           <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
103           <docletArtifact>
104             <groupId>org.umlgraph</groupId>
105             <artifactId>umlgraph</artifactId>
106             <version>5.6</version>
107           </docletArtifact>
108           <additionalparam>-views</additionalparam>
109           <useStandardDocletOptions>true</useStandardDocletOptions>
110         </configuration>
111       </plugin>
112     </plugins>
113   </reporting>
114   <!-- configure build -->
115   <!-- *********************************************************************************************************** -->
116   <!-- Plugins and repositories -->
117   <pluginRepositories>
118     <pluginRepository>
119       <id>central</id>
120       <url>http://repo1.maven.org/maven2</url>
121     </pluginRepository>
122     <pluginRepository>
123       <id>restlet</id>
124       <url>http://maven.restlet.com</url>
125     </pluginRepository>
126     <pluginRepository>
127       <id>onap-public</id>
128       <url>${nexusproxy}/${publicNexusPath}</url>
129       <snapshots>
130         <enabled>false</enabled>
131       </snapshots>
132     </pluginRepository>
133     <pluginRepository>
134       <id>ecomp-release</id>
135       <url>${nexusproxy}/${releaseNexusPath}</url>
136       <snapshots>
137         <enabled>false</enabled>
138       </snapshots>
139     </pluginRepository>
140     <pluginRepository>
141       <id>ecomp-snapshots</id>
142       <url>${nexusproxy}/${snapshotNexusPath}</url>
143       <releases>
144         <enabled>false</enabled>
145       </releases>
146     </pluginRepository>
147   </pluginRepositories>
148   <repositories>
149     <repository>
150       <id>ecomp-public</id>
151       <url>https://nexus.onap.org/content/repositories/public/</url>
152       <snapshots>
153         <enabled>false</enabled>
154       </snapshots>
155     </repository>
156     <repository>
157       <id>ecomp-releases</id>
158       <url>https://nexus.onap.org/content/repositories/releases/</url>
159       <snapshots>
160         <enabled>false</enabled>
161       </snapshots>
162     </repository>
163     <repository>
164       <id>ecomp-snapshots</id>
165       <url>https://nexus.onap.org/content/repositories/snapshots/</url>
166       <snapshots>
167         <enabled>false</enabled>
168       </snapshots>
169     </repository>
170     <repository>
171       <id>camunda-bpm</id>
172       <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url>
173     </repository>
174     <repository>
175       <id>camunda-public</id>
176       <url>https://app.camunda.com/nexus/content/groups/public</url>
177     </repository>
178     <repository>
179       <id>onap-releases</id>
180       <url>https://nexus.onap.org/content/repositories/releases/</url>
181       <snapshots>
182         <enabled>false</enabled>
183       </snapshots>
184     </repository>
185     <repository>
186       <id>onap-snapshots</id>
187       <url>https://nexus.onap.org/content/repositories/snapshots/</url>
188       <releases>
189         <enabled>false</enabled>
190       </releases>
191     </repository>
192   </repositories>
193   <!-- *********************************************************************************************************** -->
194   <!-- Build -->
195   <build>
196     <resources>
197       <resource>
198         <directory>src/main/resources</directory>
199         <filtering>true</filtering>
200       </resource>
201       <resource>
202         <directory>target/generated-sources/license</directory>
203         <includes>
204           <include>third-party-licenses.txt</include>
205         </includes>
206       </resource>
207       <resource>
208         <directory>target/generated-resources/licenses</directory>
209         <includes>
210           <include>*.*</include>
211         </includes>
212         <targetPath>third-party-licenses</targetPath>
213       </resource>
214     </resources>
215     <plugins>
216       <plugin>
217         <groupId>org.apache.maven.plugins</groupId>
218         <artifactId>maven-deploy-plugin</artifactId>
219         <!-- This version supports the "deployAtEnd" parameter -->
220         <configuration>
221           <skip />
222         </configuration>
223       </plugin>
224       <plugin>
225         <groupId>org.apache.maven.plugins</groupId>
226         <artifactId>maven-compiler-plugin</artifactId>
227         <version>3.8.0</version>
228         <configuration>
229           <debug>true</debug>
230           <compilerArgument>-Xlint</compilerArgument>
231           <verbose>true</verbose>
232           <showDeprecation>true</showDeprecation>
233           <showWarnings>true</showWarnings>
234           <compilerArgs>
235             <arg>-parameters</arg>
236           </compilerArgs>
237           <forceJavacCompilerUse>true</forceJavacCompilerUse>
238           <source>11</source>
239           <target>11</target>
240           <release>11</release>
241         </configuration>
242       </plugin>
243       <plugin>
244         <groupId>org.apache.maven.plugins</groupId>
245         <artifactId>maven-ejb-plugin</artifactId>
246         <version>2.2.1</version>
247         <configuration>
248           <ejbVersion>3.0</ejbVersion>
249           <archive>
250             <manifest>
251               <addClasspath>true</addClasspath>
252             </manifest>
253           </archive>
254         </configuration>
255       </plugin>
256       <plugin>
257         <groupId>org.apache.maven.plugins</groupId>
258         <artifactId>maven-checkstyle-plugin</artifactId>
259         <version>2.17</version>
260         <configuration>
261           <skip>true</skip>
262           <includes>**/org/openecomp/**/*.java</includes>
263           <configLocation>/google_checks.xml</configLocation>
264         </configuration>
265       </plugin>
266       <plugin>
267         <groupId>org.codehaus.mojo</groupId>
268         <artifactId>findbugs-maven-plugin</artifactId>
269         <version>2.5.2</version>
270         <configuration>
271           <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile>
272           <nested>true</nested>
273           <findbugsXmlOutput>true</findbugsXmlOutput>
274           <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
275           <xmlOutput>true</xmlOutput>
276         </configuration>
277       </plugin>
278       <plugin>
279         <groupId>org.codehaus.mojo</groupId>
280         <artifactId>sonar-maven-plugin</artifactId>
281         <version>5.1</version>
282       </plugin>
283       <plugin>
284         <artifactId>maven-scm-plugin</artifactId>
285         <version>1.8.1</version>
286         <configuration>
287           <tag>${project.artifactId}-${project.version}</tag>
288         </configuration>
289       </plugin>
290       <plugin>
291         <groupId>org.apache.maven.plugins</groupId>
292         <artifactId>maven-javadoc-plugin</artifactId>
293         <version>2.9</version>
294       </plugin>
295       <plugin>
296         <groupId>org.apache.maven.plugins</groupId>
297         <artifactId>maven-site-plugin</artifactId>
298         <dependencies>
299           <dependency>
300             <groupId>org.apache.maven.wagon</groupId>
301             <artifactId>wagon-webdav-jackrabbit</artifactId>
302             <version>2.10</version>
303           </dependency>
304         </dependencies>
305       </plugin>
306       <plugin>
307         <groupId>org.codehaus.mojo</groupId>
308         <artifactId>cobertura-maven-plugin</artifactId>
309         <version>2.5.2</version>
310         <configuration>
311           <formats>
312             <format>xml</format>
313           </formats>
314         </configuration>
315       </plugin>
316       <plugin>
317         <groupId>org.codehaus.mojo</groupId>
318         <artifactId>versions-maven-plugin</artifactId>
319         <version>1.3.1</version>
320       </plugin>
321
322       <plugin>
323         <groupId>com.fortify.ps.maven.plugin</groupId>
324         <artifactId>sca-maven-plugin</artifactId>
325         <version>4.20</version>
326         <configuration>
327           <buildId>mso-${project.version}</buildId>
328           <source>${java.version}</source>
329         </configuration>
330       </plugin>
331       <plugin>
332         <groupId>org.jacoco</groupId>
333         <artifactId>jacoco-maven-plugin</artifactId>
334         <executions>
335           <execution>
336             <id>prepare-agent</id>
337             <goals>
338               <goal>prepare-agent</goal>
339             </goals>
340           </execution>
341           <execution>
342             <id>report</id>
343             <goals>
344               <goal>report</goal>
345             </goals>
346             <configuration>
347               <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
348               <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
349             </configuration>
350           </execution>
351         </executions>
352       </plugin>
353       <plugin>
354         <groupId>org.codehaus.mojo</groupId>
355         <artifactId>license-maven-plugin</artifactId>
356         <version>1.15</version>
357         <configuration>
358           <inceptionYear>2017</inceptionYear>
359           <projectName>ONAP - SO</projectName>
360           <licenseName>apache_v2</licenseName>
361           <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
362           <emptyLineAfterHeader>true</emptyLineAfterHeader>
363           <trimHeaderLine>true</trimHeaderLine>
364           <processStartTag>============LICENSE_START=======================================================</processStartTag>
365           <sectionDelimiter>================================================================================</sectionDelimiter>
366           <processEndTag>============LICENSE_END=========================================================</processEndTag>
367           <includes>
368             <include>**/*.java</include>
369             <include>**/*.groovy</include>
370           </includes>
371           <excludes>
372             <exclude>**/com/att/**</exclude>
373           </excludes>
374         </configuration>
375         <executions>
376           <execution>
377             <id>verify-headers</id>
378             <goals>
379               <goal>check-file-header</goal>
380             </goals>
381             <configuration>
382               <failOnNotUptodateHeader>true</failOnNotUptodateHeader>
383               <failOnMissingHeader>true</failOnMissingHeader>
384             </configuration>
385           </execution>
386         </executions>
387       </plugin>
388       <plugin>
389         <groupId>org.codehaus.gmaven</groupId>
390         <artifactId>groovy-maven-plugin</artifactId>
391         <version>2.0</version>
392         <executions>
393           <!-- set absolute base path from super pom -->
394           <execution>
395             <id>find-basepath</id>
396             <phase>validate</phase>
397             <goals>
398               <goal>execute</goal>
399             </goals>
400             <configuration>
401               <source>
402                 <![CDATA[
403                     import java.io.File;
404                     log.info('## define projects super pom absolute path through basepath_marker')
405                     String p = "basepath_marker";
406                     File f = null;
407                     if( p != null ) {
408                         def _max_child_poms = 0
409                         while( _max_child_poms++ < 5 ) {
410                             f = new File( p );
411                             if( f.exists() ) {
412                                 break;
413                             }   
414                             p = "../" + p;
415                         }
416                     }
417                     if( f != null ) {
418                         String basePath = f.getCanonicalPath();
419                         basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) ); 
420                         project.properties['base-path'] = basePath.replace( '\\' , '/');
421                         log.info(' - used base path = ' + project.properties['base-path'] );
422                     } else {
423                         log.error( 'Could not find basepath_marker marker file!' );
424                         System.stop( 0 );
425                     }
426                 ]]>
427               </source>
428             </configuration>
429           </execution>
430         </executions>
431       </plugin>
432       <plugin>
433         <groupId>net.revelc.code.formatter</groupId>
434         <artifactId>formatter-maven-plugin</artifactId>
435         <version>2.9.0</version>
436         <executions>
437           <execution>
438             <id>format-java</id>
439             <goals>
440               <goal>format</goal>
441             </goals>
442             <phase>process-sources</phase>
443             <configuration>
444               <skip>${format.skipExecute}</skip>
445               <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
446             </configuration>
447           </execution>
448           <execution>
449             <id>format-xml</id>
450             <goals>
451               <goal>format</goal>
452             </goals>
453             <phase>process-sources</phase>
454             <configuration>
455               <skip>${format.skipExecute}</skip>
456               <sourceDirectory>${project.basedir}</sourceDirectory>
457               <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile>
458               <includes>
459                 <include>pom.xml</include>
460               </includes>
461             </configuration>
462           </execution>
463           <execution>
464             <id>validate-java</id>
465             <goals>
466               <goal>validate</goal>
467             </goals>
468             <configuration>
469               <skip>${format.skipValidate}</skip>
470               <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
471             </configuration>
472           </execution>
473           <execution>
474             <id>validate-poms</id>
475             <goals>
476               <goal>validate</goal>
477             </goals>
478             <configuration>
479               <skip>${format.skipValidate}</skip>
480               <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile>
481               <includes>
482                 <include>pom.xml</include>
483               </includes>
484             </configuration>
485           </execution>
486         </executions>
487         <dependencies>
488           <dependency>
489             <groupId>com.fasterxml.jackson.core</groupId>
490             <artifactId>jackson-annotations</artifactId>
491             <version>2.9.8</version>
492           </dependency>
493         </dependencies>
494       </plugin>
495       <plugin>
496         <groupId>org.apache.maven.plugins</groupId>
497         <artifactId>maven-enforcer-plugin</artifactId>
498         <version>3.0.0-M3</version>
499         <executions>
500           <execution>
501             <id>enforce-property</id>
502             <configuration>
503               <skip>true</skip>
504             </configuration>
505           </execution>
506           <execution>
507             <id>enforce-no-snapshots</id>
508             <configuration>
509               <skip>true</skip>
510             </configuration>
511           </execution>
512           <execution>
513             <id>enforce-banned-dependencies</id>
514             <goals>
515               <goal>enforce</goal>
516             </goals>
517             <configuration>
518               <rules>
519                 <bannedDependencies>
520                   <excludes>
521                     <exclude>org.powermock</exclude>
522                   </excludes>
523                   <searchTransitive>false</searchTransitive>
524                 </bannedDependencies>
525               </rules>
526               <fail>true</fail>
527             </configuration>
528           </execution>
529         </executions>
530       </plugin>
531     </plugins>
532     <pluginManagement>
533       <plugins>
534         <plugin>
535           <groupId>org.eclipse.m2e</groupId>
536           <artifactId>lifecycle-mapping</artifactId>
537           <version>1.0.0</version>
538           <configuration>
539             <lifecycleMappingMetadata>
540               <pluginExecutions>
541                 <pluginExecution>
542                   <pluginExecutionFilter>
543                     <groupId>org.apache.maven.plugins</groupId>
544                     <artifactId>maven-checkstyle-plugin</artifactId>
545                     <versionRange>[1.0.0,)</versionRange>
546                     <goals>
547                       <goal>check</goal>
548                     </goals>
549                   </pluginExecutionFilter>
550                   <action>
551                     <execute />
552                   </action>
553                 </pluginExecution>
554                 <pluginExecution>
555                   <pluginExecutionFilter>
556                     <groupId>org.codehaus.gmaven</groupId>
557                     <artifactId>groovy-maven-plugin</artifactId>
558                     <versionRange>[1.0.0,)</versionRange>
559                     <goals>
560                       <goal>execute</goal>
561                     </goals>
562                   </pluginExecutionFilter>
563                   <action>
564                     <execute />
565                   </action>
566                 </pluginExecution>
567               </pluginExecutions>
568             </lifecycleMappingMetadata>
569           </configuration>
570         </plugin>
571         <plugin>
572           <groupId>io.fabric8</groupId>
573           <artifactId>docker-maven-plugin</artifactId>
574           <version>${io.fabric8.version}</version>
575           <configuration>
576             <skip>${docker.skip}</skip>
577             <skipBuild>${docker.skip.build}</skipBuild>
578             <skipPush>${docker.skip.push}</skipPush>
579             <dockerHost>${docker.newHost}</dockerHost>
580             <!-- 1. Update address to your local docker VM. 2. Add IP to 
581               your NO_PROXY environment variable -->
582             <certPath>${docker.host.cert.path}</certPath>
583             <!-- Add -Ddocker.host.cert.pat="path to your local certs directory" 
584               to maven build command -->
585             <pushRegistry>${dockerPushRepo}</pushRegistry>
586             <!-- Update .m2/settings.xml Add server id settings.dockerRepository, 
587               username, and password -->
588             <pullRegistry>${dockerPullRepo}</pullRegistry>
589             <!-- If docker repo is not public. Update .m2/settings.xml Add 
590               server id settings.dockerRepository, username, and password -->
591             <images>
592               <image>
593                 <alias>service</alias>
594                 <name>${project.artifactId}:${project.version}</name>
595                 <build>
596                   <dockerFileDir>${project.build.directory}</dockerFileDir>
597                 </build>
598               </image>
599             </images>
600           </configuration>
601           <executions>
602             <execution>
603               <id>start</id>
604               <goals>
605                 <goal>build</goal>
606                 <goal>push</goal>
607               </goals>
608             </execution>
609           </executions>
610         </plugin>
611         <plugin>
612           <groupId>org.apache.maven.plugins</groupId>
613           <artifactId>maven-surefire-plugin</artifactId>
614           <version>2.22.2</version>
615           <configuration>
616             <systemPropertyVariables>
617               <so.log.level>DEBUG</so.log.level>
618             </systemPropertyVariables>
619             <rerunFailingTestsCount>2</rerunFailingTestsCount>
620             <parallel>classes</parallel>
621             <useUnlimitedThreads>false</useUnlimitedThreads>
622             <threadCount>1</threadCount>
623           </configuration>
624         </plugin>
625         <plugin>
626           <groupId>org.apache.maven.plugins</groupId>
627           <artifactId>maven-failsafe-plugin</artifactId>
628           <version>2.22.2</version>
629           <configuration>
630             <skip>true</skip>
631             <systemPropertyVariables>
632               <so.log.level>DEBUG</so.log.level>
633             </systemPropertyVariables>
634             <rerunFailingTestsCount>2</rerunFailingTestsCount>
635           </configuration>
636         </plugin>
637         <plugin>
638           <groupId>org.apache.maven.plugins</groupId>
639           <artifactId>maven-dependency-plugin</artifactId>
640           <executions>
641             <execution>
642               <id>extract-docker-file</id>
643               <goals>
644                 <goal>unpack</goal>
645               </goals>
646               <configuration>
647                 <skip>true</skip>
648                 <artifactItems>
649                   <artifactItem>
650                     <groupId>org.onap.so</groupId>
651                     <artifactId>deployment-configs</artifactId>
652                     <version>${project.version}</version>
653                     <outputDirectory>${project.build.directory}</outputDirectory>
654                     <includes>*,scripts/**,certs/**, logger/*.xml</includes>
655                     <excludes>Kubernetes</excludes>
656                   </artifactItem>
657                 </artifactItems>
658               </configuration>
659             </execution>
660           </executions>
661         </plugin>
662         <plugin>
663           <groupId>org.apache.maven.plugins</groupId>
664           <artifactId>maven-jar-plugin</artifactId>
665           <version>3.0.2</version>
666           <executions>
667             <execution>
668               <id>original</id>
669               <phase>none</phase>
670               <goals>
671                 <goal>jar</goal>
672               </goals>
673               <configuration>
674                 <classifier>${originalClassifier}</classifier>
675                 <includes>
676                   <include>**</include>
677                 </includes>
678               </configuration>
679             </execution>
680           </executions>
681         </plugin>
682         <plugin>
683           <groupId>org.springframework.boot</groupId>
684           <artifactId>spring-boot-maven-plugin</artifactId>
685           <version>${springboot.version}</version>
686           <executions>
687             <execution>
688               <id>build-info</id>
689               <goals>
690                 <goal>build-info</goal>
691               </goals>
692             </execution>
693           </executions>
694         </plugin>
695       </plugins>
696     </pluginManagement>
697   </build>
698   <!-- *********************************************************************************************************** -->
699   <!-- Dependencies -->
700   <dependencies>
701     <dependency>
702       <groupId>org.onap.logging-analytics</groupId>
703       <artifactId>logging-slf4j</artifactId>
704     </dependency>
705     <dependency>
706       <groupId>org.onap.logging-analytics</groupId>
707       <artifactId>logging-filter-base</artifactId>
708     </dependency>
709     <dependency>
710       <groupId>org.onap.logging-analytics</groupId>
711       <artifactId>logging-filter-spring</artifactId>
712     </dependency>
713     <dependency>
714       <groupId>com.fasterxml.jackson.core</groupId>
715       <artifactId>jackson-core</artifactId>
716     </dependency>
717     <dependency>
718       <groupId>com.fasterxml.jackson.module</groupId>
719       <artifactId>jackson-module-jaxb-annotations</artifactId>
720     </dependency>
721     <dependency>
722       <groupId>com.fasterxml.jackson.core</groupId>
723       <artifactId>jackson-databind</artifactId>
724     </dependency>
725     <dependency>
726       <groupId>com.fasterxml.jackson.core</groupId>
727       <artifactId>jackson-annotations</artifactId>
728     </dependency>
729     <dependency>
730       <groupId>com.fasterxml.jackson.jaxrs</groupId>
731       <artifactId>jackson-jaxrs-base</artifactId>
732     </dependency>
733     <dependency>
734       <groupId>com.fasterxml.jackson.jaxrs</groupId>
735       <artifactId>jackson-jaxrs-json-provider</artifactId>
736     </dependency>
737     <dependency>
738       <groupId>javax.ws.rs</groupId>
739       <artifactId>javax.ws.rs-api</artifactId>
740       <version>${jax.ws.rs}</version>
741     </dependency>
742     <dependency>
743       <groupId>javax.annotation</groupId>
744       <artifactId>javax.annotation-api</artifactId>
745     </dependency>
746     <dependency>
747       <groupId>javax.inject</groupId>
748       <artifactId>javax.inject</artifactId>
749       <version>1</version>
750     </dependency>
751     <dependency>
752       <groupId>org.mockito</groupId>
753       <artifactId>mockito-core</artifactId>
754     </dependency>
755     <dependency>
756       <groupId>org.hamcrest</groupId>
757       <artifactId>hamcrest-core</artifactId>
758     </dependency>
759     <dependency>
760       <groupId>org.hamcrest</groupId>
761       <artifactId>hamcrest-library</artifactId>
762     </dependency>
763     <dependency>
764       <groupId>junit</groupId>
765       <artifactId>junit</artifactId>
766       <scope>test</scope>
767     </dependency>
768     <dependency>
769       <groupId>xmlunit</groupId>
770       <artifactId>xmlunit</artifactId>
771       <version>1.6</version>
772       <scope>test</scope>
773     </dependency>
774     <dependency>
775       <groupId>com.github.tomakehurst</groupId>
776       <artifactId>wiremock-standalone</artifactId>
777       <version>2.13.0</version>
778       <scope>test</scope>
779       <exclusions>
780         <exclusion>
781           <groupId>org.mortbay.jetty</groupId>
782           <artifactId>jetty</artifactId>
783         </exclusion>
784         <exclusion>
785           <groupId>com.google.guava</groupId>
786           <artifactId>guava</artifactId>
787         </exclusion>
788         <exclusion>
789           <groupId>com.fasterxml.jackson.core</groupId>
790           <artifactId>jackson-core</artifactId>
791         </exclusion>
792         <exclusion>
793           <groupId>com.fasterxml.jackson.core</groupId>
794           <artifactId>jackson-annotations</artifactId>
795         </exclusion>
796         <exclusion>
797           <groupId>com.fasterxml.jackson.core</groupId>
798           <artifactId>jackson-databind</artifactId>
799         </exclusion>
800         <exclusion>
801           <groupId>org.apache.httpcomponents</groupId>
802           <artifactId>httpclient</artifactId>
803         </exclusion>
804         <exclusion>
805           <groupId>org.skyscreamer</groupId>
806           <artifactId>jsonassert</artifactId>
807         </exclusion>
808         <exclusion>
809           <groupId>xmlunit</groupId>
810           <artifactId>xmlunit</artifactId>
811         </exclusion>
812         <exclusion>
813           <groupId>com.jayway.jsonpath</groupId>
814           <artifactId>json-path</artifactId>
815         </exclusion>
816         <exclusion>
817           <groupId>net.sf.jopt-simple</groupId>
818           <artifactId>jopt-simple</artifactId>
819         </exclusion>
820       </exclusions>
821     </dependency>
822     <dependency>
823       <groupId>com.openpojo</groupId>
824       <artifactId>openpojo</artifactId>
825       <version>0.8.13</version>
826     </dependency>
827     <dependency>
828       <groupId>com.shazam</groupId>
829       <artifactId>shazamcrest</artifactId>
830       <version>0.11</version>
831       <scope>test</scope>
832       <exclusions>
833         <exclusion>
834           <groupId>com.google.guava</groupId>
835           <artifactId>guava</artifactId>
836         </exclusion>
837         <exclusion>
838           <groupId>org.apache.commons</groupId>
839           <artifactId>commons-lang3</artifactId>
840         </exclusion>
841       </exclusions>
842     </dependency>
843     <dependency>
844       <groupId>org.assertj</groupId>
845       <artifactId>assertj-core</artifactId>
846       <version>3.11.1</version>
847       <scope>test</scope>
848     </dependency>
849     <dependency>
850       <groupId>org.ow2.asm</groupId>
851       <artifactId>asm</artifactId>
852       <version>7.0</version>
853       <scope>test</scope>
854     </dependency>
855     <dependency>
856       <groupId>com.googlecode.junit-toolbox</groupId>
857       <artifactId>junit-toolbox</artifactId>
858       <version>2.4</version>
859     </dependency>
860   </dependencies>
861   <dependencyManagement>
862     <dependencies>
863       <dependency>
864         <groupId>org.onap.logging-analytics</groupId>
865         <artifactId>logging-slf4j</artifactId>
866         <version>${onap-logging-version}</version>
867       </dependency>
868       <dependency>
869         <groupId>org.onap.logging-analytics</groupId>
870         <artifactId>logging-filter-base</artifactId>
871         <version>${onap-logging-version}</version>
872       </dependency>
873       <dependency>
874         <groupId>org.onap.logging-analytics</groupId>
875         <artifactId>logging-filter-spring</artifactId>
876         <version>${onap-logging-version}</version>
877       </dependency>
878       <dependency>
879         <groupId>org.apache.httpcomponents</groupId>
880         <artifactId>httpcore</artifactId>
881         <version>4.4.4</version>
882         <scope>compile</scope>
883       </dependency>
884       <dependency>
885         <groupId>commons-codec</groupId>
886         <artifactId>commons-codec</artifactId>
887         <version>1.12</version>
888         <scope>compile</scope>
889       </dependency>
890       <dependency>
891         <groupId>commons-io</groupId>
892         <artifactId>commons-io</artifactId>
893         <version>2.5</version>
894         <scope>compile</scope>
895       </dependency>
896       <dependency>
897         <groupId>com.sun.xml.fastinfoset</groupId>
898         <artifactId>FastInfoset</artifactId>
899         <version>1.2.13</version>
900         <scope>compile</scope>
901       </dependency>
902       <dependency>
903         <groupId>org.springframework.boot</groupId>
904         <artifactId>spring-boot-dependencies</artifactId>
905         <version>${springboot.version}</version>
906         <type>pom</type>
907         <scope>import</scope>
908       </dependency>
909       <dependency>
910         <groupId>org.yaml</groupId>
911         <artifactId>snakeyaml</artifactId>
912         <version>1.26</version>
913       </dependency>
914       <dependency>
915         <groupId>javax.interceptor</groupId>
916         <artifactId>javax.interceptor-api</artifactId>
917         <version>1.2.2</version>
918       </dependency>
919       <dependency>
920         <groupId>org.springframework.boot</groupId>
921         <artifactId>spring-boot-starter-test</artifactId>
922         <version>${springboot.version}</version>
923         <exclusions>
924           <exclusion>
925             <groupId>com.vaadin.external.google</groupId>
926             <artifactId>android-json</artifactId>
927           </exclusion>
928           <exclusion>
929             <groupId>org.junit.jupiter</groupId>
930             <artifactId>junit-jupiter</artifactId>
931           </exclusion>
932           <exclusion>
933             <groupId>org.junit.vintage</groupId>
934             <artifactId>junit-vintage-engine</artifactId>
935           </exclusion>
936           <exclusion>
937             <groupId>org.mockito</groupId>
938             <artifactId>mockito-junit-jupiter</artifactId>
939           </exclusion>
940         </exclusions>
941       </dependency>
942       <dependency>
943         <groupId>net.javacrumbs.shedlock</groupId>
944         <artifactId>shedlock-spring</artifactId>
945         <version>4.0.0</version>
946       </dependency>
947       <dependency>
948         <groupId>net.javacrumbs.shedlock</groupId>
949         <artifactId>shedlock-provider-jdbc-template</artifactId>
950         <version>4.0.0</version>
951       </dependency>
952       <dependency>
953         <groupId>org.flywaydb</groupId>
954         <artifactId>flyway-core</artifactId>
955         <version>6.5.7</version>
956       </dependency>
957       <dependency>
958         <groupId>org.json</groupId>
959         <artifactId>json</artifactId>
960         <version>20140107</version>
961       </dependency>
962       <dependency>
963         <groupId>org.onap.aai.schema-service</groupId>
964         <artifactId>aai-schema</artifactId>
965         <version>1.8.1</version>
966       </dependency>
967       <dependency>
968         <groupId>org.apache.cxf</groupId>
969         <artifactId>cxf-rt-rs-client</artifactId>
970         <version>${cxf.version}</version>
971         <exclusions>
972           <exclusion>
973             <groupId>org.jboss.spec.javax.rmi</groupId>
974             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
975           </exclusion>
976         </exclusions>
977       </dependency>
978       <dependency>
979         <groupId>org.apache.cxf</groupId>
980         <artifactId>cxf-rt-bindings-soap</artifactId>
981         <version>${cxf.version}</version>
982         <exclusions>
983           <exclusion>
984             <groupId>org.jboss.spec.javax.rmi</groupId>
985             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
986           </exclusion>
987         </exclusions>
988       </dependency>
989       <dependency>
990         <groupId>org.apache.cxf</groupId>
991         <artifactId>cxf-rt-transports-http</artifactId>
992         <version>${cxf.version}</version>
993         <exclusions>
994           <exclusion>
995             <groupId>org.jboss.spec.javax.rmi</groupId>
996             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
997           </exclusion>
998         </exclusions>
999       </dependency>
1000       <dependency>
1001         <groupId>org.apache.cxf</groupId>
1002         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
1003         <version>${cxf.version}</version>
1004         <exclusions>
1005           <exclusion>
1006             <groupId>org.jboss.spec.javax.rmi</groupId>
1007             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1008           </exclusion>
1009         </exclusions>
1010       </dependency>
1011       <dependency>
1012         <groupId>org.apache.cxf</groupId>
1013         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
1014         <version>${cxf.version}</version>
1015         <exclusions>
1016           <exclusion>
1017             <groupId>org.jboss.spec.javax.rmi</groupId>
1018             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1019           </exclusion>
1020         </exclusions>
1021       </dependency>
1022       <dependency>
1023         <groupId>org.apache.cxf</groupId>
1024         <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId>
1025         <version>${cxf.version}</version>
1026         <exclusions>
1027           <exclusion>
1028             <groupId>org.jboss.spec.javax.rmi</groupId>
1029             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1030           </exclusion>
1031         </exclusions>
1032       </dependency>
1033       <dependency>
1034         <groupId>org.onap.aaf.authz</groupId>
1035         <artifactId>aaf-cadi-client</artifactId>
1036         <version>${aaf.version}</version>
1037       </dependency>
1038       <dependency>
1039         <groupId>org.onap.aaf.authz</groupId>
1040         <artifactId>aaf-cadi-aaf</artifactId>
1041         <version>${aaf.version}</version>
1042         <exclusions>
1043           <exclusion>
1044             <groupId>javax.servlet</groupId>
1045             <artifactId>servlet-api</artifactId>
1046           </exclusion>
1047           <exclusion>
1048             <groupId>log4j</groupId>
1049             <artifactId>log4j</artifactId>
1050           </exclusion>
1051         </exclusions>
1052       </dependency>
1053       <dependency>
1054         <groupId>org.onap.aaf.authz</groupId>
1055         <artifactId>aaf-auth-client</artifactId>
1056         <version>${aaf.version}</version>
1057         <scope>runtime</scope>
1058       </dependency>
1059       <dependency>
1060         <groupId>org.onap.aaf.authz</groupId>
1061         <artifactId>aaf-misc-env</artifactId>
1062         <version>${aaf.version}</version>
1063         <scope>runtime</scope>
1064       </dependency>
1065       <dependency>
1066         <groupId>org.onap.aaf.authz</groupId>
1067         <artifactId>aaf-misc-rosetta</artifactId>
1068         <version>${aaf.version}</version>
1069         <scope>runtime</scope>
1070       </dependency>
1071       <dependency>
1072         <groupId>ch.vorburger.mariaDB4j</groupId>
1073         <artifactId>mariaDB4j</artifactId>
1074         <version>2.3.0</version>
1075         <scope>test</scope>
1076       </dependency>
1077       <dependency>
1078         <groupId>org.springframework.cloud</groupId>
1079         <artifactId>spring-cloud-contract-wiremock</artifactId>
1080         <version>1.2.4.RELEASE</version>
1081         <scope>test</scope>
1082       </dependency>
1083       <dependency>
1084         <groupId>org.camunda.bpm.assert</groupId>
1085         <artifactId>camunda-bpm-assert</artifactId>
1086         <version>3.0.0</version>
1087         <scope>test</scope>
1088       </dependency>
1089       <dependency>
1090         <groupId>janino</groupId>
1091         <artifactId>janino</artifactId>
1092         <version>2.5.15</version>
1093       </dependency>
1094       <dependency>
1095         <groupId>org.camunda.bpm</groupId>
1096         <artifactId>camunda-external-task-client</artifactId>
1097         <version>1.4.0</version>
1098       </dependency>
1099       <dependency>
1100         <groupId>pl.pragmatists</groupId>
1101         <artifactId>JUnitParams</artifactId>
1102         <version>1.0.5</version>
1103         <scope>test</scope>
1104       </dependency>
1105       <dependency>
1106         <groupId>io.swagger.core.v3</groupId>
1107         <artifactId>swagger-jaxrs2</artifactId>
1108         <version>2.1.7</version>
1109       </dependency>
1110       <dependency>
1111         <groupId>org.camunda.bpm</groupId>
1112         <artifactId>camunda-bom</artifactId>
1113         <version>7.14.0</version>
1114         <scope>import</scope>
1115         <type>pom</type>
1116       </dependency>
1117     </dependencies>
1118   </dependencyManagement>
1119   <profiles>
1120     <profile>
1121       <id>docker-image-build</id>
1122       <properties>
1123         <docker.skip>false</docker.skip>
1124         <docker.skip.build>false</docker.skip.build>
1125       </properties>
1126     </profile>
1127     <profile>
1128       <id>docker-image-build-push</id>
1129       <properties>
1130         <docker.skip>false</docker.skip>
1131         <docker.skip.build>false</docker.skip.build>
1132         <docker.skip.push>false</docker.skip.push>
1133       </properties>
1134     </profile>
1135     <profile>
1136       <id>format</id>
1137       <properties>
1138         <format.skipValidate>true</format.skipValidate>
1139         <format.skipExecute>false</format.skipExecute>
1140       </properties>
1141     </profile>
1142     <profile>
1143       <id>m2e</id>
1144       <activation>
1145         <property>
1146           <name>m2e.version</name>
1147         </property>
1148       </activation>
1149       <properties>
1150         <originalClassifier />
1151       </properties>
1152     </profile>
1153   </profiles>
1154 </project>