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