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