update the relaese notes
[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.0.0</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.5.0-SNAPSHOT</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             <phase>process-sources</phase>
447             <configuration>
448               <skip>${format.skipExecute}</skip>
449               <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
450             </configuration>
451           </execution>
452           <execution>
453             <id>format-xml</id>
454             <goals>
455               <goal>format</goal>
456             </goals>
457             <phase>process-sources</phase>
458             <configuration>
459               <skip>${format.skipExecute}</skip>
460               <sourceDirectory>${project.basedir}</sourceDirectory>
461               <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile>
462               <includes>
463                 <include>pom.xml</include>
464               </includes>
465             </configuration>
466           </execution>
467           <execution>
468             <id>validate-java</id>
469             <goals>
470               <goal>validate</goal>
471             </goals>
472             <configuration>
473               <skip>${format.skipValidate}</skip>
474               <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
475             </configuration>
476           </execution>
477           <execution>
478             <id>validate-poms</id>
479             <goals>
480               <goal>validate</goal>
481             </goals>
482             <configuration>
483               <skip>${format.skipValidate}</skip>
484               <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile>
485               <includes>
486                 <include>pom.xml</include>
487               </includes>
488             </configuration>
489           </execution>
490         </executions>
491         <dependencies>
492           <dependency>
493             <groupId>com.fasterxml.jackson.core</groupId>
494             <artifactId>jackson-annotations</artifactId>
495             <version>2.9.8</version>
496           </dependency>
497         </dependencies>
498       </plugin>
499     </plugins>
500     <pluginManagement>
501       <plugins>
502         <plugin>
503           <groupId>io.fabric8</groupId>
504           <artifactId>fabric8-maven-plugin</artifactId>
505           <version>4.1.0</version>
506           <configuration>
507             <skip>${docker.skip}</skip>
508             <skipBuild>${docker.skip.build}</skipBuild>
509             <skipPush>${docker.skip.push}</skipPush>
510             <dockerHost>${docker.newHost}</dockerHost>
511             <!-- 1. Update address to your local docker VM. 2. Add IP to your NO_PROXY environment variable -->
512             <certPath>${docker.host.cert.path}</certPath>
513             <!-- Add -Ddocker.host.cert.pat="path to your local certs directory" 
514               to maven build command -->
515             <pushRegistry>${dockerPushRepo}</pushRegistry>
516             <!-- Update .m2/settings.xml Add server id settings.dockerRepository, username, and password -->
517             <pullRegistry>${dockerPullRepo}</pullRegistry>
518             <!-- If docker repo is not public. Update .m2/settings.xml Add server id settings.dockerRepository, username, and password -->
519             <images>
520               <image>
521                 <alias>service</alias>
522                 <name>${artifactId}:${project.version}</name>
523                 <build>
524                   <dockerFileDir>${project.build.directory}</dockerFileDir>
525                 </build>
526               </image>
527             </images>
528           </configuration>
529           <executions>
530             <execution>
531               <id>start</id>
532               <goals>
533                 <goal>build</goal>
534                 <goal>push</goal>
535               </goals>
536             </execution>
537           </executions>
538         </plugin>
539         <plugin>
540           <groupId>org.apache.maven.plugins</groupId>
541           <artifactId>maven-surefire-plugin</artifactId>
542           <version>2.20</version>
543           <configuration>
544             <systemPropertyVariables>
545               <so.log.level>DEBUG</so.log.level>
546             </systemPropertyVariables>
547             <rerunFailingTestsCount>2</rerunFailingTestsCount>
548             <parallel>classes</parallel>
549             <useUnlimitedThreads>false</useUnlimitedThreads>
550             <threadCount>1</threadCount>
551           </configuration>
552         </plugin>
553         <plugin>
554           <groupId>org.apache.maven.plugins</groupId>
555           <artifactId>maven-failsafe-plugin</artifactId>
556           <version>2.20</version>
557           <configuration>
558             <skip>true</skip>
559             <systemPropertyVariables>
560               <so.log.level>DEBUG</so.log.level>
561             </systemPropertyVariables>
562             <rerunFailingTestsCount>2</rerunFailingTestsCount>
563           </configuration>
564         </plugin>
565         <plugin>
566           <groupId>org.apache.maven.plugins</groupId>
567           <artifactId>maven-dependency-plugin</artifactId>
568           <executions>
569             <execution>
570               <id>extract-docker-file</id>
571               <goals>
572                 <goal>unpack</goal>
573               </goals>
574               <configuration>
575                 <artifactItems>
576                   <artifactItem>
577                     <groupId>org.onap.so</groupId>
578                     <artifactId>deployment-configs</artifactId>
579                     <version>${project.version}</version>
580                     <outputDirectory>${project.build.directory}</outputDirectory>
581                     <includes>*,scripts/**,certs/**, logger/*.xml</includes>
582                     <excludes>Kubernetes</excludes>
583                   </artifactItem>
584                 </artifactItems>
585               </configuration>
586             </execution>
587           </executions>
588         </plugin>
589         <plugin>
590           <groupId>org.apache.maven.plugins</groupId>
591           <artifactId>maven-jar-plugin</artifactId>
592           <version>3.0.2</version>
593           <executions>
594             <execution>
595               <id>tests</id>
596               <goals>
597                 <goal>test-jar</goal>
598               </goals>
599               <configuration>
600                 <skip>false</skip>
601               </configuration>
602             </execution>
603             <execution>
604               <id>original</id>
605               <phase>package</phase>
606               <goals>
607                 <goal>jar</goal>
608               </goals>
609               <configuration>
610                 <classifier>${originalClassifier}</classifier>
611                 <includes>
612                   <include>**</include>
613                 </includes>
614               </configuration>
615             </execution>
616           </executions>
617         </plugin>
618         <plugin>
619           <groupId>org.springframework.boot</groupId>
620           <artifactId>spring-boot-maven-plugin</artifactId>
621           <version>${springboot.version}</version>
622           <executions>
623             <execution>
624               <id>build-info</id>
625               <goals>
626                 <goal>build-info</goal>
627               </goals>
628             </execution>
629           </executions>
630         </plugin>
631       </plugins>
632     </pluginManagement>
633   </build>
634   <!-- *********************************************************************************************************** -->
635   <!-- Dependencies -->
636   <dependencies>
637     <dependency>
638       <groupId>com.fasterxml.jackson.core</groupId>
639       <artifactId>jackson-core</artifactId>
640     </dependency>
641     <dependency>
642       <groupId>com.fasterxml.jackson.module</groupId>
643       <artifactId>jackson-module-jaxb-annotations</artifactId>
644     </dependency>
645     <dependency>
646       <groupId>com.fasterxml.jackson.core</groupId>
647       <artifactId>jackson-databind</artifactId>
648     </dependency>
649     <dependency>
650       <groupId>com.fasterxml.jackson.core</groupId>
651       <artifactId>jackson-annotations</artifactId>
652     </dependency>
653     <dependency>
654       <groupId>com.fasterxml.jackson.jaxrs</groupId>
655       <artifactId>jackson-jaxrs-base</artifactId>
656     </dependency>
657     <dependency>
658       <groupId>com.fasterxml.jackson.jaxrs</groupId>
659       <artifactId>jackson-jaxrs-json-provider</artifactId>
660     </dependency>
661     <dependency>
662       <groupId>javax.ws.rs</groupId>
663       <artifactId>javax.ws.rs-api</artifactId>
664       <version>${jax.ws.rs}</version>
665     </dependency>
666     <dependency>
667       <groupId>javax.annotation</groupId>
668       <artifactId>javax.annotation-api</artifactId>
669       <version>1.3.1</version>
670     </dependency>
671     <dependency>
672       <groupId>javax.inject</groupId>
673       <artifactId>javax.inject</artifactId>
674       <version>1</version>
675     </dependency>
676     <dependency>
677       <groupId>org.mockito</groupId>
678       <artifactId>mockito-core</artifactId>
679     </dependency>
680     <dependency>
681       <groupId>org.hamcrest</groupId>
682       <artifactId>hamcrest-core</artifactId>
683     </dependency>
684     <dependency>
685       <groupId>org.hamcrest</groupId>
686       <artifactId>hamcrest-library</artifactId>
687     </dependency>
688     <dependency>
689       <groupId>junit</groupId>
690       <artifactId>junit</artifactId>
691       <scope>test</scope>
692     </dependency>
693     <dependency>
694       <groupId>xmlunit</groupId>
695       <artifactId>xmlunit</artifactId>
696       <version>1.6</version>
697       <scope>test</scope>
698     </dependency>
699     <dependency>
700       <groupId>com.github.tomakehurst</groupId>
701       <artifactId>wiremock-standalone</artifactId>
702       <version>2.13.0</version>
703       <scope>test</scope>
704       <exclusions>
705         <exclusion>
706           <groupId>org.mortbay.jetty</groupId>
707           <artifactId>jetty</artifactId>
708         </exclusion>
709         <exclusion>
710           <groupId>com.google.guava</groupId>
711           <artifactId>guava</artifactId>
712         </exclusion>
713         <exclusion>
714           <groupId>com.fasterxml.jackson.core</groupId>
715           <artifactId>jackson-core</artifactId>
716         </exclusion>
717         <exclusion>
718           <groupId>com.fasterxml.jackson.core</groupId>
719           <artifactId>jackson-annotations</artifactId>
720         </exclusion>
721         <exclusion>
722           <groupId>com.fasterxml.jackson.core</groupId>
723           <artifactId>jackson-databind</artifactId>
724         </exclusion>
725         <exclusion>
726           <groupId>org.apache.httpcomponents</groupId>
727           <artifactId>httpclient</artifactId>
728         </exclusion>
729         <exclusion>
730           <groupId>org.skyscreamer</groupId>
731           <artifactId>jsonassert</artifactId>
732         </exclusion>
733         <exclusion>
734           <groupId>xmlunit</groupId>
735           <artifactId>xmlunit</artifactId>
736         </exclusion>
737         <exclusion>
738           <groupId>com.jayway.jsonpath</groupId>
739           <artifactId>json-path</artifactId>
740         </exclusion>
741         <exclusion>
742           <groupId>net.sf.jopt-simple</groupId>
743           <artifactId>jopt-simple</artifactId>
744         </exclusion>
745       </exclusions>
746     </dependency>
747     <dependency>
748       <groupId>com.openpojo</groupId>
749       <artifactId>openpojo</artifactId>
750       <version>0.8.10</version>
751     </dependency>
752     <dependency>
753       <groupId>com.shazam</groupId>
754       <artifactId>shazamcrest</artifactId>
755       <version>0.11</version>
756       <scope>test</scope>
757       <exclusions>
758         <exclusion>
759           <groupId>com.google.guava</groupId>
760           <artifactId>guava</artifactId>
761         </exclusion>
762         <exclusion>
763           <groupId>org.apache.commons</groupId>
764           <artifactId>commons-lang3</artifactId>
765         </exclusion>
766       </exclusions>
767     </dependency>
768     <dependency>
769       <groupId>org.assertj</groupId>
770       <artifactId>assertj-core</artifactId>
771       <version>3.11.1</version>
772       <scope>test</scope>
773     </dependency>
774     <dependency>
775       <groupId>com.googlecode.junit-toolbox</groupId>
776       <artifactId>junit-toolbox</artifactId>
777       <version>2.4</version>
778     </dependency>
779   </dependencies>
780   <dependencyManagement>
781     <dependencies>
782       <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
783       <!-- force use of version 4.5 everywhere in transient deps, aligned on WildFly 10 version -->
784       <dependency>
785         <groupId>org.apache.httpcomponents</groupId>
786         <artifactId>httpcore</artifactId>
787         <version>4.4.4</version>
788         <scope>compile</scope>
789       </dependency>
790       <dependency>
791         <groupId>commons-codec</groupId>
792         <artifactId>commons-codec</artifactId>
793         <version>1.10</version>
794         <scope>compile</scope>
795       </dependency>
796       <dependency>
797         <groupId>commons-io</groupId>
798         <artifactId>commons-io</artifactId>
799         <version>2.5</version>
800         <scope>compile</scope>
801       </dependency>
802       <dependency>
803         <groupId>com.sun.xml.fastinfoset</groupId>
804         <artifactId>FastInfoset</artifactId>
805         <version>1.2.13</version>
806         <scope>compile</scope>
807       </dependency>
808       <dependency>
809         <groupId>org.springframework.boot</groupId>
810         <artifactId>spring-boot-dependencies</artifactId>
811         <version>${springboot.version}</version>
812         <type>pom</type>
813         <scope>import</scope>
814       </dependency>
815       <dependency>
816         <groupId>org.yaml</groupId>
817         <artifactId>snakeyaml</artifactId>
818         <version>1.23</version>
819       </dependency>
820       <dependency>
821         <groupId>javax.interceptor</groupId>
822         <artifactId>javax.interceptor-api</artifactId>
823         <version>1.2.2</version>
824       </dependency>
825       <dependency>
826         <groupId>org.springframework.boot</groupId>
827         <artifactId>spring-boot-starter-test</artifactId>
828         <version>${springboot.version}</version>
829         <exclusions>
830           <exclusion>
831             <groupId>com.vaadin.external.google</groupId>
832             <artifactId>android-json</artifactId>
833           </exclusion>
834         </exclusions>
835       </dependency>
836       <dependency>
837         <groupId>net.javacrumbs.shedlock</groupId>
838         <artifactId>shedlock-spring</artifactId>
839         <version>0.18.2</version>
840       </dependency>
841       <dependency>
842         <groupId>net.javacrumbs.shedlock</groupId>
843         <artifactId>shedlock-provider-jdbc-template</artifactId>
844         <version>0.18.2</version>
845       </dependency>
846       <dependency>
847         <groupId>org.flywaydb</groupId>
848         <artifactId>flyway-core</artifactId>
849         <version>5.1.4</version>
850       </dependency>
851       <dependency>
852         <groupId>org.json</groupId>
853         <artifactId>json</artifactId>
854         <version>20140107</version>
855       </dependency>
856       <dependency>
857         <groupId>org.yaml</groupId>
858         <artifactId>snakeyaml</artifactId>
859         <version>1.19</version>
860       </dependency>
861     </dependencies>
862   </dependencyManagement>
863   <profiles>
864     <profile>
865       <id>docker-image-build</id>
866       <properties>
867         <docker.skip>false</docker.skip>
868         <docker.skip.build>false</docker.skip.build>
869         <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
870       </properties>
871     </profile>
872     <profile>
873       <id>docker-image-build-push</id>
874       <properties>
875         <docker.skip>false</docker.skip>
876         <docker.skip.build>false</docker.skip.build>
877         <docker.skip.push>false</docker.skip.push>
878         <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
879       </properties>
880     </profile>
881     <profile>
882       <id>format</id>
883       <properties>
884         <format.skipValidate>true</format.skipValidate>
885         <format.skipExecute>false</format.skipExecute>
886       </properties>
887     </profile>
888     <profile>
889       <id>m2e</id>
890       <activation>
891         <property>
892           <name>m2e.version</name>
893         </property>
894       </activation>
895       <properties>
896         <originalClassifier />
897       </properties>
898     </profile>
899   </profiles>
900 </project>