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