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