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