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