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