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