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