Merge "Check for existing VNF in VNFM"
[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.1</version>
8                 <relativePath/>
9         </parent>
10         <groupId>org.onap.so</groupId>
11         <artifactId>so</artifactId>
12         <packaging>pom</packaging>
13         <version>1.4.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                 <!-- TODO: update to version 1.4.0 for Dublin -->
51                 <openstack.version>1.4.0-SNAPSHOT</openstack.version>
52                 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>            
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.6</cxf.version>
67                 <jax.ws.rs>2.1</jax.ws.rs>
68                 <springboot.version>2.0.5.RELEASE</springboot.version>
69                 <camunda.springboot.version>3.2.0</camunda.springboot.version>
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                                                 <parallel>classes</parallel>
438                                                 <useUnlimitedThreads>false</useUnlimitedThreads>
439                                                 <threadCount>1</threadCount>
440                                         </configuration>
441                                 </plugin>
442                                 <plugin>
443                                         <groupId>org.apache.maven.plugins</groupId>
444                                         <artifactId>maven-failsafe-plugin</artifactId>
445                                         <version>2.20</version>
446                                         <configuration>
447                                                 <skip>true</skip>
448                                                 <systemPropertyVariables>
449                                                         <so.log.level>DEBUG</so.log.level>
450                                                 </systemPropertyVariables>
451                                                 <rerunFailingTestsCount>2</rerunFailingTestsCount>
452                                         </configuration>
453                                 </plugin>
454                                 <plugin>
455                                         <groupId>org.apache.maven.plugins</groupId>
456                                         <artifactId>maven-dependency-plugin</artifactId>
457                                         <executions>
458                                                 <execution>
459                                                         <id>extract-docker-file</id>
460                                                         <goals>
461                                                                 <goal>unpack</goal>
462                                                         </goals>
463                                                         <configuration>
464                                                                 <artifactItems>
465                                                                         <artifactItem>
466                                                                                 <groupId>org.onap.so</groupId>
467                                                                                 <artifactId>deployment-configs</artifactId>
468                                                                                 <version>${project.version}</version>
469                                                                                 <outputDirectory>${project.build.directory}</outputDirectory>
470                                                                                 <includes>*,scripts/**,certs/**, logger/*.xml</includes>
471                                                                                 <excludes>Kubernetes</excludes>
472                                                                         </artifactItem>
473                                                                 </artifactItems>
474                                                         </configuration>
475                                                 </execution>
476                                         </executions>
477                                 </plugin>
478                                 <plugin>
479                                         <groupId>org.apache.maven.plugins</groupId>
480                                         <artifactId>maven-jar-plugin</artifactId>
481                                         <version>3.0.2</version>
482                                         <executions>
483                                                 <execution>
484                                                         <id>tests</id>
485                                                         <goals>
486                                                                 <goal>test-jar</goal>
487                                                         </goals>
488                                                         <configuration>
489                                                                 <skip>false</skip>
490                                                         </configuration>
491                                                 </execution>
492                                                 <execution>
493                                                         <id>original</id>
494                                                         <phase>package</phase>
495                                                         <goals>
496                                                                 <goal>jar</goal>
497                                                         </goals>
498                                                         <configuration>
499                                                                 <classifier>${originalClassifier}</classifier>
500                                                                 <includes>
501                                                                         <include>**</include>
502                                                                 </includes>
503                                                         </configuration>
504                                                 </execution>
505                                         </executions>
506                                 </plugin>
507                                 <plugin>
508                                         <groupId>org.springframework.boot</groupId>
509                                         <artifactId>spring-boot-maven-plugin</artifactId>
510                                         <version>${springboot.version}</version>
511                                         <executions>
512                                                 <execution>
513                                                         <id>build-info</id>
514                                                         <goals>
515                                                                 <goal>build-info</goal>
516                                                         </goals>
517                                                 </execution>
518                                         </executions>
519                                 </plugin>
520                         </plugins>
521                 </pluginManagement>
522         </build>
523         <!-- *********************************************************************************************************** -->
524         <!-- Dependencies -->
525         <dependencies>
526                 <dependency>
527                         <groupId>com.fasterxml.jackson.core</groupId>
528                         <artifactId>jackson-core</artifactId>
529                 </dependency>
530                 <dependency>
531                         <groupId>com.fasterxml.jackson.module</groupId>
532                         <artifactId>jackson-module-jaxb-annotations</artifactId>
533                 </dependency>
534                 <dependency>
535                         <groupId>com.fasterxml.jackson.core</groupId>
536                         <artifactId>jackson-databind</artifactId>
537                 </dependency>
538                 <dependency>
539                         <groupId>com.fasterxml.jackson.core</groupId>
540                         <artifactId>jackson-annotations</artifactId>
541                 </dependency>
542                 <dependency>
543                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
544                         <artifactId>jackson-jaxrs-base</artifactId>
545                 </dependency>
546                 <dependency>
547                         <groupId>com.fasterxml.jackson.jaxrs</groupId>
548                         <artifactId>jackson-jaxrs-json-provider</artifactId>
549                 </dependency>
550                 <dependency>
551                         <groupId>javax.ws.rs</groupId>
552                         <artifactId>javax.ws.rs-api</artifactId>
553                         <version>${jax.ws.rs}</version>
554                 </dependency>
555                 <dependency>
556                         <groupId>javax.annotation</groupId>
557                         <artifactId>javax.annotation-api</artifactId>
558                         <version>1.3.1</version>
559                 </dependency>
560                 <dependency>
561                         <groupId>javax.inject</groupId>
562                         <artifactId>javax.inject</artifactId>
563                         <version>1</version>
564                 </dependency>
565                 <dependency>
566                         <groupId>org.mockito</groupId>
567                         <artifactId>mockito-core</artifactId>
568                 </dependency>
569                 <dependency>
570                         <groupId>org.hamcrest</groupId>
571                         <artifactId>hamcrest-core</artifactId>
572                 </dependency>
573                 <dependency>
574                         <groupId>org.hamcrest</groupId>
575                         <artifactId>hamcrest-library</artifactId>
576                 </dependency>
577                 <dependency>
578                         <groupId>junit</groupId>
579                         <artifactId>junit</artifactId>
580                         <scope>test</scope>
581                 </dependency>
582                 <dependency>
583                         <groupId>xmlunit</groupId>
584                         <artifactId>xmlunit</artifactId>
585                         <version>1.6</version>
586                         <scope>test</scope>
587                 </dependency>
588                 <dependency>
589                         <groupId>com.github.tomakehurst</groupId>
590                         <artifactId>wiremock-standalone</artifactId>
591                         <version>2.13.0</version>
592                         <scope>test</scope>
593                         <exclusions>
594                                 <exclusion>
595                                         <groupId>org.mortbay.jetty</groupId>
596                                         <artifactId>jetty</artifactId>
597                                 </exclusion>
598                                 <exclusion>
599                                         <groupId>com.google.guava</groupId>
600                                         <artifactId>guava</artifactId>
601                                 </exclusion>
602                                 <exclusion>
603                                         <groupId>com.fasterxml.jackson.core</groupId>
604                                         <artifactId>jackson-core</artifactId>
605                                 </exclusion>
606                                 <exclusion>
607                                         <groupId>com.fasterxml.jackson.core</groupId>
608                                         <artifactId>jackson-annotations</artifactId>
609                                 </exclusion>
610                                 <exclusion>
611                                         <groupId>com.fasterxml.jackson.core</groupId>
612                                         <artifactId>jackson-databind</artifactId>
613                                 </exclusion>
614                                 <exclusion>
615                                         <groupId>org.apache.httpcomponents</groupId>
616                                         <artifactId>httpclient</artifactId>
617                                 </exclusion>
618                                 <exclusion>
619                                         <groupId>org.skyscreamer</groupId>
620                                         <artifactId>jsonassert</artifactId>
621                                 </exclusion>
622                                 <exclusion>
623                                         <groupId>xmlunit</groupId>
624                                         <artifactId>xmlunit</artifactId>
625                                 </exclusion>
626                                 <exclusion>
627                                         <groupId>com.jayway.jsonpath</groupId>
628                                         <artifactId>json-path</artifactId>
629                                 </exclusion>
630                                 <exclusion>
631                                         <groupId>net.sf.jopt-simple</groupId>
632                                         <artifactId>jopt-simple</artifactId>
633                                 </exclusion>
634                         </exclusions>
635                 </dependency>
636                 <dependency>
637                         <groupId>com.openpojo</groupId>
638                         <artifactId>openpojo</artifactId>
639                         <version>0.8.10</version>
640                 </dependency>
641                 <dependency>
642                         <groupId>com.shazam</groupId>
643                         <artifactId>shazamcrest</artifactId>
644                         <version>0.11</version>
645                         <scope>test</scope>
646                         <exclusions>
647                                 <exclusion>
648                                         <groupId>com.google.guava</groupId>
649                                         <artifactId>guava</artifactId>
650                                 </exclusion>
651                                 <exclusion>
652                                         <groupId>org.apache.commons</groupId>
653                                         <artifactId>commons-lang3</artifactId>
654                                 </exclusion>
655                         </exclusions>
656                 </dependency>
657                 <dependency>
658                         <groupId>org.assertj</groupId>
659                         <artifactId>assertj-core</artifactId>
660                         <version>3.11.1</version>
661                         <scope>test</scope>
662                 </dependency>
663                 <dependency>
664                         <groupId>com.googlecode.junit-toolbox</groupId>
665                         <artifactId>junit-toolbox</artifactId>
666                         <version>2.4</version>
667                 </dependency>
668         </dependencies>
669         <dependencyManagement>
670                 <dependencies>
671                         <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
672                         <!-- force use of version 4.5 everywhere in transient deps, aligned on
673                                 WildFly 10 version -->
674                         <dependency>
675                                 <groupId>org.apache.httpcomponents</groupId>
676                                 <artifactId>httpcore</artifactId>
677                                 <version>4.4.4</version>
678                                 <scope>compile</scope>
679                         </dependency>
680                         <dependency>
681                                 <groupId>commons-codec</groupId>
682                                 <artifactId>commons-codec</artifactId>
683                                 <version>1.10</version>
684                                 <scope>compile</scope>
685                         </dependency>
686                         <dependency>
687                                 <groupId>commons-io</groupId>
688                                 <artifactId>commons-io</artifactId>
689                                 <version>2.5</version>
690                                 <scope>compile</scope>
691                         </dependency>
692                         <dependency>
693                                 <groupId>com.sun.xml.fastinfoset</groupId>
694                                 <artifactId>FastInfoset</artifactId>
695                                 <version>1.2.13</version>
696                                 <scope>compile</scope>
697                         </dependency>
698                         <dependency>
699                                 <groupId>org.springframework.boot</groupId>
700                                 <artifactId>spring-boot-dependencies</artifactId>
701                                 <version>${springboot.version}</version>
702                                 <type>pom</type>
703                                 <scope>import</scope>
704                         </dependency>
705                         <dependency>
706                                 <groupId>org.yaml</groupId>
707                                 <artifactId>snakeyaml</artifactId>
708                                 <version>1.23</version>
709                         </dependency>
710                         <dependency>
711                                 <groupId>javax.interceptor</groupId>
712                                 <artifactId>javax.interceptor-api</artifactId>
713                                 <version>1.2.2</version>
714                         </dependency>
715                         <dependency>
716                                 <groupId>org.springframework.boot</groupId>
717                                 <artifactId>spring-boot-starter-test</artifactId>
718                                 <version>${springboot.version}</version>
719                                 <exclusions>
720                                         <exclusion>
721                                                 <groupId>com.vaadin.external.google</groupId>
722                                                 <artifactId>android-json</artifactId>
723                                         </exclusion>
724                                 </exclusions>
725                         </dependency>
726                         <dependency>
727                                 <groupId>net.javacrumbs.shedlock</groupId>
728                                 <artifactId>shedlock-spring</artifactId>
729                                 <version>0.18.2</version>
730                         </dependency>
731                         <dependency>
732                                 <groupId>net.javacrumbs.shedlock</groupId>
733                                 <artifactId>shedlock-provider-jdbc-template</artifactId>
734                                 <version>0.18.2</version>
735                         </dependency>
736                         <dependency>
737                                 <groupId>org.flywaydb</groupId>
738                                 <artifactId>flyway-core</artifactId>
739                                 <version>5.1.4</version>
740                         </dependency>
741                         <dependency>
742                                 <groupId>org.json</groupId>
743                                 <artifactId>json</artifactId>
744                                 <version>20140107</version>
745                         </dependency>
746                         <dependency>
747                                 <groupId>org.yaml</groupId>
748                                 <artifactId>snakeyaml</artifactId>
749                                 <version>1.19</version>
750                         </dependency>
751                 </dependencies>
752         </dependencyManagement>
753         <profiles>
754                 <profile>
755                         <id>docker-image-build</id>
756                         <properties>
757                                 <docker.skip>false</docker.skip>
758                                 <docker.skip.build>false</docker.skip.build>
759                                 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
760                         </properties>
761                 </profile>
762                 <profile>
763                         <id>docker-image-build-push</id>
764                         <properties>
765                                 <docker.skip>false</docker.skip>
766                                 <docker.skip.build>false</docker.skip.build>
767                                 <docker.skip.push>false</docker.skip.push>
768                                 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
769                         </properties>
770                 </profile>
771                 <profile>
772                         <id>m2e</id>
773                         <activation>
774                                 <property>
775                                         <name>m2e.version</name>
776                                 </property>
777                         </activation>
778                         <properties>
779                                 <originalClassifier/>
780                         </properties>
781                 </profile>
782         </profiles>
783 </project>