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