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