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