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