[SO] Pending Create changes for SO-API and BPMN-INFRA to support CNF's through ASD
[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.9.0-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.12.1</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       <version>${onap-logging-version}</version>
705     </dependency>
706     <dependency>
707       <groupId>org.onap.logging-analytics</groupId>
708       <artifactId>logging-filter-base</artifactId>
709       <version>${onap-logging-version}</version>
710     </dependency>
711     <dependency>
712       <groupId>org.onap.logging-analytics</groupId>
713       <artifactId>logging-filter-spring</artifactId>
714       <version>${onap-logging-version}</version>
715     </dependency>
716     <dependency>
717       <groupId>com.fasterxml.jackson.core</groupId>
718       <artifactId>jackson-core</artifactId>
719     </dependency>
720     <dependency>
721       <groupId>com.fasterxml.jackson.module</groupId>
722       <artifactId>jackson-module-jaxb-annotations</artifactId>
723     </dependency>
724     <dependency>
725       <groupId>com.fasterxml.jackson.core</groupId>
726       <artifactId>jackson-databind</artifactId>
727     </dependency>
728     <dependency>
729       <groupId>com.fasterxml.jackson.core</groupId>
730       <artifactId>jackson-annotations</artifactId>
731     </dependency>
732     <dependency>
733       <groupId>com.fasterxml.jackson.jaxrs</groupId>
734       <artifactId>jackson-jaxrs-base</artifactId>
735     </dependency>
736     <dependency>
737       <groupId>com.fasterxml.jackson.jaxrs</groupId>
738       <artifactId>jackson-jaxrs-json-provider</artifactId>
739     </dependency>
740     <dependency>
741       <groupId>javax.ws.rs</groupId>
742       <artifactId>javax.ws.rs-api</artifactId>
743       <version>${jax.ws.rs}</version>
744     </dependency>
745     <dependency>
746       <groupId>javax.annotation</groupId>
747       <artifactId>javax.annotation-api</artifactId>
748     </dependency>
749     <dependency>
750       <groupId>javax.inject</groupId>
751       <artifactId>javax.inject</artifactId>
752       <version>1</version>
753     </dependency>
754     <dependency>
755       <groupId>org.mockito</groupId>
756       <artifactId>mockito-core</artifactId>
757     </dependency>
758     <dependency>
759       <groupId>org.hamcrest</groupId>
760       <artifactId>hamcrest-core</artifactId>
761     </dependency>
762     <dependency>
763       <groupId>org.hamcrest</groupId>
764       <artifactId>hamcrest-library</artifactId>
765     </dependency>
766     <dependency>
767       <groupId>junit</groupId>
768       <artifactId>junit</artifactId>
769       <scope>test</scope>
770     </dependency>
771     <dependency>
772       <groupId>xmlunit</groupId>
773       <artifactId>xmlunit</artifactId>
774       <version>1.6</version>
775       <scope>test</scope>
776     </dependency>
777     <dependency>
778       <groupId>com.github.tomakehurst</groupId>
779       <artifactId>wiremock-standalone</artifactId>
780       <version>2.13.0</version>
781       <scope>test</scope>
782       <exclusions>
783         <exclusion>
784           <groupId>org.mortbay.jetty</groupId>
785           <artifactId>jetty</artifactId>
786         </exclusion>
787         <exclusion>
788           <groupId>com.google.guava</groupId>
789           <artifactId>guava</artifactId>
790         </exclusion>
791         <exclusion>
792           <groupId>com.fasterxml.jackson.core</groupId>
793           <artifactId>jackson-core</artifactId>
794         </exclusion>
795         <exclusion>
796           <groupId>com.fasterxml.jackson.core</groupId>
797           <artifactId>jackson-annotations</artifactId>
798         </exclusion>
799         <exclusion>
800           <groupId>com.fasterxml.jackson.core</groupId>
801           <artifactId>jackson-databind</artifactId>
802         </exclusion>
803         <exclusion>
804           <groupId>org.apache.httpcomponents</groupId>
805           <artifactId>httpclient</artifactId>
806         </exclusion>
807         <exclusion>
808           <groupId>org.skyscreamer</groupId>
809           <artifactId>jsonassert</artifactId>
810         </exclusion>
811         <exclusion>
812           <groupId>xmlunit</groupId>
813           <artifactId>xmlunit</artifactId>
814         </exclusion>
815         <exclusion>
816           <groupId>com.jayway.jsonpath</groupId>
817           <artifactId>json-path</artifactId>
818         </exclusion>
819         <exclusion>
820           <groupId>net.sf.jopt-simple</groupId>
821           <artifactId>jopt-simple</artifactId>
822         </exclusion>
823       </exclusions>
824     </dependency>
825     <dependency>
826       <groupId>com.openpojo</groupId>
827       <artifactId>openpojo</artifactId>
828       <version>0.8.13</version>
829     </dependency>
830     <dependency>
831       <groupId>com.shazam</groupId>
832       <artifactId>shazamcrest</artifactId>
833       <version>0.11</version>
834       <scope>test</scope>
835       <exclusions>
836         <exclusion>
837           <groupId>com.google.guava</groupId>
838           <artifactId>guava</artifactId>
839         </exclusion>
840         <exclusion>
841           <groupId>org.apache.commons</groupId>
842           <artifactId>commons-lang3</artifactId>
843         </exclusion>
844       </exclusions>
845     </dependency>
846     <dependency>
847       <groupId>org.assertj</groupId>
848       <artifactId>assertj-core</artifactId>
849       <version>3.11.1</version>
850       <scope>test</scope>
851     </dependency>
852     <dependency>
853       <groupId>org.ow2.asm</groupId>
854       <artifactId>asm</artifactId>
855       <version>7.0</version>
856       <scope>test</scope>
857     </dependency>
858     <dependency>
859       <groupId>com.googlecode.junit-toolbox</groupId>
860       <artifactId>junit-toolbox</artifactId>
861       <version>2.4</version>
862     </dependency>
863   </dependencies>
864   <dependencyManagement>
865     <dependencies>
866       <dependency>
867         <groupId>org.onap.logging-analytics</groupId>
868         <artifactId>logging-slf4j</artifactId>
869         <version>${onap-logging-version}</version>
870       </dependency>
871       <dependency>
872         <groupId>org.onap.logging-analytics</groupId>
873         <artifactId>logging-filter-base</artifactId>
874         <version>${onap-logging-version}</version>
875       </dependency>
876       <dependency>
877         <groupId>org.onap.logging-analytics</groupId>
878         <artifactId>logging-filter-spring</artifactId>
879         <version>${onap-logging-version}</version>
880       </dependency>
881       <dependency>
882         <groupId>org.apache.httpcomponents</groupId>
883         <artifactId>httpcore</artifactId>
884         <version>4.4.4</version>
885         <scope>compile</scope>
886       </dependency>
887       <dependency>
888         <groupId>commons-codec</groupId>
889         <artifactId>commons-codec</artifactId>
890         <version>1.15</version>
891         <scope>compile</scope>
892       </dependency>
893       <dependency>
894         <groupId>commons-io</groupId>
895         <artifactId>commons-io</artifactId>
896         <version>2.8.0</version>
897         <scope>compile</scope>
898       </dependency>
899       <dependency>
900         <groupId>com.sun.xml.fastinfoset</groupId>
901         <artifactId>FastInfoset</artifactId>
902         <version>1.2.13</version>
903         <scope>compile</scope>
904       </dependency>
905       <dependency>
906         <groupId>org.springframework.boot</groupId>
907         <artifactId>spring-boot-dependencies</artifactId>
908         <version>${springboot.version}</version>
909         <type>pom</type>
910         <scope>import</scope>
911       </dependency>
912       <dependency>
913         <groupId>org.yaml</groupId>
914         <artifactId>snakeyaml</artifactId>
915         <version>1.26</version>
916       </dependency>
917       <dependency>
918         <groupId>javax.interceptor</groupId>
919         <artifactId>javax.interceptor-api</artifactId>
920         <version>1.2.2</version>
921       </dependency>
922       <dependency>
923         <groupId>org.springframework.boot</groupId>
924         <artifactId>spring-boot-starter-test</artifactId>
925         <version>${springboot.version}</version>
926         <exclusions>
927           <exclusion>
928             <groupId>com.vaadin.external.google</groupId>
929             <artifactId>android-json</artifactId>
930           </exclusion>
931           <exclusion>
932             <groupId>org.junit.jupiter</groupId>
933             <artifactId>junit-jupiter</artifactId>
934           </exclusion>
935           <exclusion>
936             <groupId>org.junit.vintage</groupId>
937             <artifactId>junit-vintage-engine</artifactId>
938           </exclusion>
939           <exclusion>
940             <groupId>org.mockito</groupId>
941             <artifactId>mockito-junit-jupiter</artifactId>
942           </exclusion>
943         </exclusions>
944       </dependency>
945       <dependency>
946         <groupId>net.javacrumbs.shedlock</groupId>
947         <artifactId>shedlock-spring</artifactId>
948         <version>4.0.0</version>
949       </dependency>
950       <dependency>
951         <groupId>net.javacrumbs.shedlock</groupId>
952         <artifactId>shedlock-provider-jdbc-template</artifactId>
953         <version>4.0.0</version>
954       </dependency>
955       <dependency>
956         <groupId>org.flywaydb</groupId>
957         <artifactId>flyway-core</artifactId>
958         <version>6.5.7</version>
959       </dependency>
960       <dependency>
961         <groupId>org.json</groupId>
962         <artifactId>json</artifactId>
963         <version>20140107</version>
964       </dependency>
965       <dependency>
966         <groupId>org.onap.aai.schema-service</groupId>
967         <artifactId>aai-schema</artifactId>
968         <version>1.9.2</version>
969       </dependency>
970       <dependency>
971         <groupId>org.apache.cxf</groupId>
972         <artifactId>cxf-rt-rs-client</artifactId>
973         <version>${cxf.version}</version>
974         <exclusions>
975           <exclusion>
976             <groupId>org.jboss.spec.javax.rmi</groupId>
977             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
978           </exclusion>
979         </exclusions>
980       </dependency>
981       <dependency>
982         <groupId>org.apache.cxf</groupId>
983         <artifactId>cxf-rt-bindings-soap</artifactId>
984         <version>${cxf.version}</version>
985         <exclusions>
986           <exclusion>
987             <groupId>org.jboss.spec.javax.rmi</groupId>
988             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
989           </exclusion>
990         </exclusions>
991       </dependency>
992       <dependency>
993         <groupId>org.apache.cxf</groupId>
994         <artifactId>cxf-rt-transports-http</artifactId>
995         <version>${cxf.version}</version>
996         <exclusions>
997           <exclusion>
998             <groupId>org.jboss.spec.javax.rmi</groupId>
999             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1000           </exclusion>
1001         </exclusions>
1002       </dependency>
1003       <dependency>
1004         <groupId>org.apache.cxf</groupId>
1005         <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
1006         <version>${cxf.version}</version>
1007         <exclusions>
1008           <exclusion>
1009             <groupId>org.jboss.spec.javax.rmi</groupId>
1010             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1011           </exclusion>
1012         </exclusions>
1013       </dependency>
1014       <dependency>
1015         <groupId>org.apache.cxf</groupId>
1016         <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
1017         <version>${cxf.version}</version>
1018         <exclusions>
1019           <exclusion>
1020             <groupId>org.jboss.spec.javax.rmi</groupId>
1021             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1022           </exclusion>
1023         </exclusions>
1024       </dependency>
1025       <dependency>
1026         <groupId>org.apache.cxf</groupId>
1027         <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId>
1028         <version>${cxf.version}</version>
1029         <exclusions>
1030           <exclusion>
1031             <groupId>org.jboss.spec.javax.rmi</groupId>
1032             <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1033           </exclusion>
1034         </exclusions>
1035       </dependency>
1036       <dependency>
1037         <groupId>org.onap.aaf.authz</groupId>
1038         <artifactId>aaf-cadi-client</artifactId>
1039         <version>${aaf.version}</version>
1040       </dependency>
1041       <dependency>
1042         <groupId>org.onap.aaf.authz</groupId>
1043         <artifactId>aaf-cadi-aaf</artifactId>
1044         <version>${aaf.version}</version>
1045         <exclusions>
1046           <exclusion>
1047             <groupId>javax.servlet</groupId>
1048             <artifactId>servlet-api</artifactId>
1049           </exclusion>
1050           <exclusion>
1051             <groupId>log4j</groupId>
1052             <artifactId>log4j</artifactId>
1053           </exclusion>
1054         </exclusions>
1055       </dependency>
1056       <dependency>
1057         <groupId>org.onap.aaf.authz</groupId>
1058         <artifactId>aaf-auth-client</artifactId>
1059         <version>${aaf.version}</version>
1060         <scope>runtime</scope>
1061       </dependency>
1062       <dependency>
1063         <groupId>org.onap.aaf.authz</groupId>
1064         <artifactId>aaf-misc-env</artifactId>
1065         <version>${aaf.version}</version>
1066         <scope>runtime</scope>
1067       </dependency>
1068       <dependency>
1069         <groupId>org.onap.aaf.authz</groupId>
1070         <artifactId>aaf-misc-rosetta</artifactId>
1071         <version>${aaf.version}</version>
1072         <scope>runtime</scope>
1073       </dependency>
1074       <dependency>
1075         <groupId>ch.vorburger.mariaDB4j</groupId>
1076         <artifactId>mariaDB4j</artifactId>
1077         <version>2.3.0</version>
1078         <scope>test</scope>
1079       </dependency>
1080       <dependency>
1081         <groupId>org.springframework.cloud</groupId>
1082         <artifactId>spring-cloud-contract-wiremock</artifactId>
1083         <version>1.2.4.RELEASE</version>
1084         <scope>test</scope>
1085       </dependency>
1086       <dependency>
1087         <groupId>org.camunda.bpm.assert</groupId>
1088         <artifactId>camunda-bpm-assert</artifactId>
1089         <version>3.0.0</version>
1090         <scope>test</scope>
1091       </dependency>
1092       <dependency>
1093         <groupId>janino</groupId>
1094         <artifactId>janino</artifactId>
1095         <version>2.5.15</version>
1096       </dependency>
1097       <dependency>
1098         <groupId>org.camunda.bpm</groupId>
1099         <artifactId>camunda-external-task-client</artifactId>
1100         <version>1.4.0</version>
1101       </dependency>
1102       <dependency>
1103         <groupId>pl.pragmatists</groupId>
1104         <artifactId>JUnitParams</artifactId>
1105         <version>1.0.5</version>
1106         <scope>test</scope>
1107       </dependency>
1108       <dependency>
1109         <groupId>io.swagger.core.v3</groupId>
1110         <artifactId>swagger-jaxrs2</artifactId>
1111         <version>2.1.7</version>
1112       </dependency>
1113       <dependency>
1114         <groupId>org.camunda.bpm</groupId>
1115         <artifactId>camunda-bom</artifactId>
1116         <version>7.14.0</version>
1117         <scope>import</scope>
1118         <type>pom</type>
1119       </dependency>
1120     </dependencies>
1121   </dependencyManagement>
1122   <profiles>
1123     <profile>
1124       <id>docker-image-build</id>
1125       <properties>
1126         <docker.skip>false</docker.skip>
1127         <docker.skip.build>false</docker.skip.build>
1128       </properties>
1129     </profile>
1130     <profile>
1131       <id>docker-image-build-push</id>
1132       <properties>
1133         <docker.skip>false</docker.skip>
1134         <docker.skip.build>false</docker.skip.build>
1135         <docker.skip.push>false</docker.skip.push>
1136       </properties>
1137     </profile>
1138     <profile>
1139       <id>format</id>
1140       <properties>
1141         <format.skipValidate>true</format.skipValidate>
1142         <format.skipExecute>false</format.skipExecute>
1143       </properties>
1144     </profile>
1145     <profile>
1146       <id>m2e</id>
1147       <activation>
1148         <property>
1149           <name>m2e.version</name>
1150         </property>
1151       </activation>
1152       <properties>
1153         <originalClassifier />
1154       </properties>
1155     </profile>
1156   </profiles>
1157 </project>