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