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