blob: d7664ef3424a92aeb4d5b616a1c34f4159cd94dd [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 -->
Benjamin, Max (mb388a)f49313b2019-01-03 22:50:11 -050051 <openstack.version>1.4.0-SNAPSHOT</openstack.version>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040052 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040053 <originalClassifier>original</originalClassifier>
54 <docker.skip>true</docker.skip>
55 <docker.skip.build>true</docker.skip.build>
56 <docker.skip.push>true</docker.skip.push>
57 <docker.buildArg.project_version>${project.version}</docker.buildArg.project_version>
58 <docker.buildArg.artifact_id>${project.artifactId}</docker.buildArg.artifact_id>
59 <docker.buildArg.docker_repository>${dockerPullRepo}</docker.buildArg.docker_repository>
60 <enforcer.skip>true</enforcer.skip>
61 <nexusproxy>https://nexus.onap.org</nexusproxy>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040062 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
63 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
64 <publicNexusPath>content/repositories/public/</publicNexusPath>
65 <siteNexusPath>content/sites/site/org/onap/so/${project.version}/</siteNexusPath>
Gary Wu8a1d8012018-10-23 17:24:40 -070066 <cxf.version>3.2.6</cxf.version>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -040067 <jax.ws.rs>2.1</jax.ws.rs>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040068 <springboot.version>2.0.5.RELEASE</springboot.version>
69 <camunda.springboot.version>3.0.0</camunda.springboot.version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040070 </properties>
71 <distributionManagement>
72 <repository>
73 <id>ecomp-releases</id>
74 <url>${nexusproxy}/${releaseNexusPath}</url>
75 </repository>
76 <snapshotRepository>
77 <id>ecomp-snapshots</id>
78 <url>${nexusproxy}/${snapshotNexusPath}</url>
79 </snapshotRepository>
80 <site>
81 <id>ecomp-site</id>
82 <url>dav:${nexusproxy}${siteNexusPath}</url>
83 </site>
84 </distributionManagement>
85 <reporting>
86 <plugins>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-javadoc-plugin</artifactId>
90 <version>2.10.4</version>
91 <configuration>
92 <failOnError>false</failOnError>
93 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
94 <docletArtifact>
95 <groupId>org.umlgraph</groupId>
96 <artifactId>umlgraph</artifactId>
97 <version>5.6</version>
98 </docletArtifact>
99 <additionalparam>-views</additionalparam>
100 <useStandardDocletOptions>true</useStandardDocletOptions>
101 </configuration>
102 </plugin>
103 </plugins>
104 </reporting>
105 <!-- configure build -->
106 <!-- *********************************************************************************************************** -->
107 <!-- Plugins and repositories -->
108 <pluginRepositories>
109 <pluginRepository>
110 <id>central</id>
111 <url>http://repo1.maven.org/maven2</url>
112 </pluginRepository>
113 <pluginRepository>
114 <id>restlet</id>
115 <url>http://maven.restlet.com</url>
116 </pluginRepository>
117 <pluginRepository>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400118 <id>ecomp-public</id>
119 <url>${nexusproxy}/${publicNexusPath}</url>
120 <snapshots>
121 <enabled>false</enabled>
122 </snapshots>
123 </pluginRepository>
124 <pluginRepository>
125 <id>ecomp-release</id>
126 <url>${nexusproxy}/${releaseNexusPath}</url>
127 <snapshots>
128 <enabled>false</enabled>
129 </snapshots>
130 </pluginRepository>
131 <pluginRepository>
132 <id>ecomp-snapshots</id>
133 <url>${nexusproxy}/${snapshotNexusPath}</url>
134 <releases>
135 <enabled>false</enabled>
136 </releases>
137 </pluginRepository>
138 </pluginRepositories>
139 <repositories>
140 <repository>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400141 <id>ecomp-public</id>
142 <url>https://nexus.onap.org/content/repositories/public/</url>
143 <snapshots>
144 <enabled>false</enabled>
145 </snapshots>
146 </repository>
147 <repository>
148 <id>ecomp-releases</id>
149 <url>https://nexus.onap.org/content/repositories/releases/</url>
150 <snapshots>
151 <enabled>false</enabled>
152 </snapshots>
153 </repository>
154 <repository>
155 <id>ecomp-snapshots</id>
156 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
157 <releases>
158 <enabled>false</enabled>
159 </releases>
160 </repository>
161 <repository>
162 <id>camunda-bpm</id>
163 <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url>
164 </repository>
165 <repository>
166 <id>camunda-public</id>
167 <url>https://app.camunda.com/nexus/content/groups/public</url>
168 </repository>
169 <repository>
170 <!-- TODO: remove from ONAP environemnt -->
171 <id>onap-releases</id>
172 <url>https://nexus.onap.org/content/repositories/releases/</url>
173 <snapshots>
174 <enabled>false</enabled>
175 </snapshots>
176 </repository>
177 <repository>
178 <!-- TODO: remove from ONAP environemnt -->
179 <id>onap-snapshots</id>
180 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
181 <releases>
182 <enabled>false</enabled>
183 </releases>
184 </repository>
185 </repositories>
186 <!-- *********************************************************************************************************** -->
187 <!-- Build -->
188 <build>
189 <resources>
190 <resource>
191 <directory>src/main/resources</directory>
192 <filtering>true</filtering>
193 </resource>
194 <resource>
195 <directory>target/generated-sources/license</directory>
196 <includes>
197 <include>third-party-licenses.txt</include>
198 </includes>
199 </resource>
200 <resource>
201 <directory>target/generated-resources/licenses</directory>
202 <includes>
203 <include>*.*</include>
204 </includes>
205 <targetPath>third-party-licenses</targetPath>
206 </resource>
207 </resources>
208 <plugins>
209 <plugin>
210 <groupId>org.sonatype.plugins</groupId>
211 <artifactId>nexus-staging-maven-plugin</artifactId>
212 <version>1.6.7</version>
213 <extensions>true</extensions>
214 <configuration>
215 <nexusUrl>${nexusproxy}</nexusUrl>
216 <stagingProfileId>176c31dfe190a</stagingProfileId>
217 <serverId>ecomp-staging</serverId>
218 </configuration>
219 </plugin>
220 <plugin>
221 <groupId>org.apache.maven.plugins</groupId>
222 <artifactId>maven-deploy-plugin</artifactId>
223 <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter -->
224 <configuration>
Gary Wu1c1fc782018-08-24 15:30:22 -0700225 <skip/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400226 </configuration>
227 </plugin>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400228
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400229 <plugin>
230 <groupId>org.apache.maven.plugins</groupId>
231 <artifactId>maven-compiler-plugin</artifactId>
232 <version>3.6.1</version>
233 <configuration>
234 <debug>true</debug>
235 <compilerArgument>-Xlint</compilerArgument>
236 <verbose>true</verbose>
237 <showDeprecation>true</showDeprecation>
238 <showWarnings>true</showWarnings>
239 <source>1.8</source>
240 <target>1.8</target>
Benjamin, Max (mb388a)1ffe9a22018-08-28 10:23:08 -0400241 <compilerArgs>
242 <arg>-parameters</arg>
243 </compilerArgs>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400244 </configuration>
245 </plugin>
246 <plugin>
247 <groupId>org.apache.maven.plugins</groupId>
248 <artifactId>maven-ejb-plugin</artifactId>
249 <version>2.2.1</version>
250 <configuration>
251 <ejbVersion>3.0</ejbVersion>
252 <archive>
253 <manifest>
254 <addClasspath>true</addClasspath>
255 </manifest>
256 </archive>
257 </configuration>
258 </plugin>
259 <plugin>
260 <groupId>org.apache.maven.plugins</groupId>
261 <artifactId>maven-checkstyle-plugin</artifactId>
262 <version>2.17</version>
263 <configuration>
264 <skip>true</skip>
265 <includes>**/org/openecomp/**/*.java</includes>
266 <configLocation>/google_checks.xml</configLocation>
267 </configuration>
268 </plugin>
269 <plugin>
270 <groupId>org.codehaus.mojo</groupId>
271 <artifactId>findbugs-maven-plugin</artifactId>
272 <version>2.5.2</version>
273 <configuration>
274 <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile>
275 <nested>true</nested>
276 <findbugsXmlOutput>true</findbugsXmlOutput>
277 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
278 <xmlOutput>true</xmlOutput>
279 </configuration>
280 </plugin>
281 <plugin>
282 <groupId>org.codehaus.mojo</groupId>
283 <artifactId>sonar-maven-plugin</artifactId>
284 <version>5.1</version>
285 </plugin>
286 <plugin>
287 <artifactId>maven-scm-plugin</artifactId>
288 <version>1.8.1</version>
289 <configuration>
290 <tag>${project.artifactId}-${project.version}</tag>
291 </configuration>
292 </plugin>
293 <plugin>
294 <groupId>org.apache.maven.plugins</groupId>
295 <artifactId>maven-javadoc-plugin</artifactId>
296 <version>2.9</version>
297 </plugin>
298 <plugin>
299 <groupId>org.apache.maven.plugins</groupId>
300 <artifactId>maven-site-plugin</artifactId>
301 <version>3.6</version>
302 <dependencies>
303 <dependency>
304 <groupId>org.apache.maven.wagon</groupId>
305 <artifactId>wagon-webdav-jackrabbit</artifactId>
306 <version>2.10</version>
307 </dependency>
308 </dependencies>
309 </plugin>
310 <plugin>
311 <groupId>org.codehaus.mojo</groupId>
312 <artifactId>cobertura-maven-plugin</artifactId>
313 <version>2.5.2</version>
314 <configuration>
315 <formats>
316 <format>xml</format>
317 </formats>
318 </configuration>
319 </plugin>
320 <plugin>
321 <groupId>org.codehaus.mojo</groupId>
322 <artifactId>versions-maven-plugin</artifactId>
323 <version>1.3.1</version>
324 </plugin>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400325
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400326 <plugin>
327 <groupId>com.fortify.ps.maven.plugin</groupId>
328 <artifactId>sca-maven-plugin</artifactId>
329 <version>4.20</version>
330 <configuration>
331 <buildId>mso-${project.version}</buildId>
332 <source>1.8</source>
333 </configuration>
334 </plugin>
335 <plugin>
336 <groupId>org.jacoco</groupId>
337 <artifactId>jacoco-maven-plugin</artifactId>
338 <version>${jacoco.version}</version>
339 <executions>
340 <execution>
341 <id>default-prepare-agent</id>
342 <goals>
343 <goal>prepare-agent</goal>
344 </goals>
345 </execution>
346 <execution>
347 <id>default-report</id>
348 <goals>
349 <goal>report</goal>
350 </goals>
351 </execution>
352 </executions>
353 </plugin>
354 <plugin>
355 <groupId>org.codehaus.mojo</groupId>
356 <artifactId>license-maven-plugin</artifactId>
357 <version>1.15</version>
358 <configuration>
359 <inceptionYear>2017</inceptionYear>
360 <projectName>ONAP - SO</projectName>
361 <licenseName>apache_v2</licenseName>
362 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
363 <emptyLineAfterHeader>true</emptyLineAfterHeader>
364 <trimHeaderLine>true</trimHeaderLine>
365 <processStartTag>============LICENSE_START=======================================================</processStartTag>
366 <sectionDelimiter>================================================================================</sectionDelimiter>
367 <processEndTag>============LICENSE_END=========================================================</processEndTag>
368 <includes>
369 <include>**/*.java</include>
370 <include>**/*.groovy</include>
371 </includes>
372 <excludes>
373 <exclude>**/com/att/**</exclude>
374 </excludes>
375 </configuration>
376 <executions>
377 <execution>
378 <id>verify-headers</id>
379 <goals>
380 <goal>check-file-header</goal>
381 </goals>
382 <configuration>
383 <failOnNotUptodateHeader>true</failOnNotUptodateHeader>
384 <failOnMissingHeader>true</failOnMissingHeader>
385 </configuration>
386 </execution>
387 </executions>
388 </plugin>
389 </plugins>
390 <pluginManagement>
391 <plugins>
392 <plugin>
393 <groupId>io.fabric8</groupId>
394 <artifactId>fabric8-maven-plugin</artifactId>
395 <version>3.5.33</version>
396 <configuration>
397 <skip>${docker.skip}</skip>
398 <skipBuild>${docker.skip.build}</skipBuild>
399 <skipPush>${docker.skip.push}</skipPush>
400 <dockerHost>${docker.newHost}</dockerHost> <!-- 1. Update address to your local docker VM. 2. Add IP to your NO_PROXY
401 environment variable -->
402 <certPath>${docker.host.cert.path}</certPath><!-- Add -Ddocker.host.cert.pat="path
403 to your local certs directory" to maven build command -->
404 <pushRegistry>${dockerPushRepo}</pushRegistry> <!-- Update .m2/settings.xml Add server id settings.dockerRepository, username,
405 and password -->
406 <pullRegistry>${dockerPullRepo}</pullRegistry> <!-- If docker repo is not public. Update .m2/settings.xml Add server id
407 settings.dockerRepository, username, and password -->
408 <images>
409 <image>
410 <alias>service</alias>
411 <name>${artifactId}:${project.version}</name>
412 <build>
413 <dockerFileDir>${project.build.directory}</dockerFileDir>
414 </build>
415 </image>
416 </images>
417 </configuration>
418 <executions>
419 <execution>
420 <id>start</id>
421 <goals>
422 <goal>build</goal>
423 <goal>push</goal>
424 </goals>
425 </execution>
426 </executions>
427 </plugin>
428 <plugin>
429 <groupId>org.apache.maven.plugins</groupId>
430 <artifactId>maven-surefire-plugin</artifactId>
431 <version>2.20</version>
432 <configuration>
433 <systemPropertyVariables>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400434 <so.log.level>DEBUG</so.log.level>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400435 </systemPropertyVariables>
436 <rerunFailingTestsCount>2</rerunFailingTestsCount>
437 </configuration>
438 </plugin>
439 <plugin>
440 <groupId>org.apache.maven.plugins</groupId>
441 <artifactId>maven-failsafe-plugin</artifactId>
442 <version>2.20</version>
443 <configuration>
444 <skip>true</skip>
445 <systemPropertyVariables>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400446 <so.log.level>DEBUG</so.log.level>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400447 </systemPropertyVariables>
448 <rerunFailingTestsCount>2</rerunFailingTestsCount>
449 </configuration>
450 </plugin>
451 <plugin>
452 <groupId>org.apache.maven.plugins</groupId>
453 <artifactId>maven-dependency-plugin</artifactId>
454 <executions>
455 <execution>
456 <id>extract-docker-file</id>
457 <goals>
458 <goal>unpack</goal>
459 </goals>
460 <configuration>
461 <artifactItems>
462 <artifactItem>
463 <groupId>org.onap.so</groupId>
464 <artifactId>deployment-configs</artifactId>
465 <version>${project.version}</version>
466 <outputDirectory>${project.build.directory}</outputDirectory>
467 <includes>*,scripts/**,certs/**, logger/*.xml</includes>
468 <excludes>Kubernetes</excludes>
469 </artifactItem>
470 </artifactItems>
471 </configuration>
472 </execution>
473 </executions>
474 </plugin>
475 <plugin>
476 <groupId>org.apache.maven.plugins</groupId>
477 <artifactId>maven-jar-plugin</artifactId>
478 <version>3.0.2</version>
479 <executions>
480 <execution>
481 <id>tests</id>
482 <goals>
483 <goal>test-jar</goal>
484 </goals>
485 <configuration>
486 <skip>false</skip>
487 </configuration>
488 </execution>
489 <execution>
490 <id>original</id>
491 <phase>package</phase>
492 <goals>
493 <goal>jar</goal>
494 </goals>
495 <configuration>
496 <classifier>${originalClassifier}</classifier>
497 <includes>
498 <include>**</include>
499 </includes>
500 </configuration>
501 </execution>
502 </executions>
503 </plugin>
Benjamin, Max (mb388a)96122072019-02-01 18:38:16 -0500504 <plugin>
505 <groupId>org.springframework.boot</groupId>
506 <artifactId>spring-boot-maven-plugin</artifactId>
507 <version>${springboot.version}</version>
508 <executions>
509 <execution>
510 <id>build-info</id>
511 <goals>
512 <goal>build-info</goal>
513 </goals>
514 </execution>
515 </executions>
516 </plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400517 </plugins>
518 </pluginManagement>
519 </build>
520 <!-- *********************************************************************************************************** -->
521 <!-- Dependencies -->
522 <dependencies>
523 <dependency>
524 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400525 <artifactId>jackson-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400526 </dependency>
527 <dependency>
528 <groupId>com.fasterxml.jackson.module</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400529 <artifactId>jackson-module-jaxb-annotations</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400530 </dependency>
531 <dependency>
532 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400533 <artifactId>jackson-databind</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400534 </dependency>
535 <dependency>
536 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400537 <artifactId>jackson-annotations</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400538 </dependency>
539 <dependency>
540 <groupId>com.fasterxml.jackson.jaxrs</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400541 <artifactId>jackson-jaxrs-base</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400542 </dependency>
543 <dependency>
544 <groupId>com.fasterxml.jackson.jaxrs</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400545 <artifactId>jackson-jaxrs-json-provider</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400546 </dependency>
547 <dependency>
548 <groupId>javax.ws.rs</groupId>
549 <artifactId>javax.ws.rs-api</artifactId>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -0400550 <version>${jax.ws.rs}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400551 </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>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400563 <groupId>org.mockito</groupId>
564 <artifactId>mockito-core</artifactId>
565 </dependency>
566 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400567 <groupId>org.hamcrest</groupId>
568 <artifactId>hamcrest-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400569 </dependency>
570 <dependency>
571 <groupId>org.hamcrest</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400572 <artifactId>hamcrest-library</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400573 </dependency>
574 <dependency>
575 <groupId>junit</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400576 <artifactId>junit</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400577 <scope>test</scope>
578 </dependency>
579 <dependency>
580 <groupId>xmlunit</groupId>
581 <artifactId>xmlunit</artifactId>
582 <version>1.6</version>
583 <scope>test</scope>
584 </dependency>
585 <dependency>
586 <groupId>com.github.tomakehurst</groupId>
587 <artifactId>wiremock-standalone</artifactId>
588 <version>2.13.0</version>
589 <scope>test</scope>
590 <exclusions>
591 <exclusion>
592 <groupId>org.mortbay.jetty</groupId>
593 <artifactId>jetty</artifactId>
594 </exclusion>
595 <exclusion>
596 <groupId>com.google.guava</groupId>
597 <artifactId>guava</artifactId>
598 </exclusion>
599 <exclusion>
600 <groupId>com.fasterxml.jackson.core</groupId>
601 <artifactId>jackson-core</artifactId>
602 </exclusion>
603 <exclusion>
604 <groupId>com.fasterxml.jackson.core</groupId>
605 <artifactId>jackson-annotations</artifactId>
606 </exclusion>
607 <exclusion>
608 <groupId>com.fasterxml.jackson.core</groupId>
609 <artifactId>jackson-databind</artifactId>
610 </exclusion>
611 <exclusion>
612 <groupId>org.apache.httpcomponents</groupId>
613 <artifactId>httpclient</artifactId>
614 </exclusion>
615 <exclusion>
616 <groupId>org.skyscreamer</groupId>
617 <artifactId>jsonassert</artifactId>
618 </exclusion>
619 <exclusion>
620 <groupId>xmlunit</groupId>
621 <artifactId>xmlunit</artifactId>
622 </exclusion>
623 <exclusion>
624 <groupId>com.jayway.jsonpath</groupId>
625 <artifactId>json-path</artifactId>
626 </exclusion>
627 <exclusion>
628 <groupId>net.sf.jopt-simple</groupId>
629 <artifactId>jopt-simple</artifactId>
630 </exclusion>
631 </exclusions>
632 </dependency>
633 <dependency>
634 <groupId>com.openpojo</groupId>
635 <artifactId>openpojo</artifactId>
636 <version>0.8.10</version>
637 </dependency>
638 <dependency>
639 <groupId>com.shazam</groupId>
640 <artifactId>shazamcrest</artifactId>
641 <version>0.11</version>
642 <scope>test</scope>
643 <exclusions>
644 <exclusion>
645 <groupId>com.google.guava</groupId>
646 <artifactId>guava</artifactId>
647 </exclusion>
648 <exclusion>
649 <groupId>org.apache.commons</groupId>
650 <artifactId>commons-lang3</artifactId>
651 </exclusion>
652 </exclusions>
653 </dependency>
654 <dependency>
655 <groupId>org.assertj</groupId>
656 <artifactId>assertj-core</artifactId>
Michal Kabaj7d6e1ae2018-11-15 13:48:36 +0100657 <version>3.11.1</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400658 <scope>test</scope>
659 </dependency>
660 <dependency>
661 <groupId>com.googlecode.junit-toolbox</groupId>
662 <artifactId>junit-toolbox</artifactId>
663 <version>2.4</version>
664 </dependency>
665 </dependencies>
666 <dependencyManagement>
667 <dependencies>
668 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
669 <!-- force use of version 4.5 everywhere in transient deps, aligned on
670 WildFly 10 version -->
671 <dependency>
672 <groupId>org.apache.httpcomponents</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400673 <artifactId>httpcore</artifactId>
674 <version>4.4.4</version>
675 <scope>compile</scope>
676 </dependency>
677 <dependency>
678 <groupId>commons-codec</groupId>
679 <artifactId>commons-codec</artifactId>
680 <version>1.10</version>
681 <scope>compile</scope>
682 </dependency>
683 <dependency>
684 <groupId>commons-io</groupId>
685 <artifactId>commons-io</artifactId>
686 <version>2.5</version>
687 <scope>compile</scope>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400688 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400689 <dependency>
690 <groupId>com.sun.xml.fastinfoset</groupId>
691 <artifactId>FastInfoset</artifactId>
692 <version>1.2.13</version>
693 <scope>compile</scope>
694 </dependency>
695 <dependency>
696 <groupId>org.springframework.boot</groupId>
697 <artifactId>spring-boot-dependencies</artifactId>
698 <version>${springboot.version}</version>
699 <type>pom</type>
700 <scope>import</scope>
701 </dependency>
702 <dependency>
703 <groupId>org.yaml</groupId>
704 <artifactId>snakeyaml</artifactId>
Benjamin, Max (mb388a)a9696cd2018-09-19 09:56:15 -0400705 <version>1.23</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400706 </dependency>
707 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400708 <groupId>javax.interceptor</groupId>
709 <artifactId>javax.interceptor-api</artifactId>
710 <version>1.2.2</version>
711 </dependency>
712 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400713 <groupId>org.springframework.boot</groupId>
714 <artifactId>spring-boot-starter-test</artifactId>
715 <version>${springboot.version}</version>
716 <exclusions>
717 <exclusion>
718 <groupId>com.vaadin.external.google</groupId>
719 <artifactId>android-json</artifactId>
720 </exclusion>
721 </exclusions>
722 </dependency>
723 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400724 <groupId>net.javacrumbs.shedlock</groupId>
725 <artifactId>shedlock-spring</artifactId>
726 <version>0.18.2</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400727 </dependency>
728 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400729 <groupId>net.javacrumbs.shedlock</groupId>
730 <artifactId>shedlock-provider-jdbc-template</artifactId>
731 <version>0.18.2</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400732 </dependency>
733 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400734 <groupId>org.flywaydb</groupId>
735 <artifactId>flyway-core</artifactId>
736 <version>5.1.4</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400737 </dependency>
738 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400739 <groupId>org.json</groupId>
740 <artifactId>json</artifactId>
741 <version>20140107</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400742 </dependency>
Siva.yef46404c2018-09-20 03:28:20 +0000743 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400744 <groupId>org.yaml</groupId>
745 <artifactId>snakeyaml</artifactId>
746 <version>1.19</version>
Siva.yef46404c2018-09-20 03:28:20 +0000747 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400748 </dependencies>
749 </dependencyManagement>
750 <profiles>
751 <profile>
752 <id>docker-image-build</id>
753 <properties>
754 <docker.skip>false</docker.skip>
755 <docker.skip.build>false</docker.skip.build>
756 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
757 </properties>
758 </profile>
759 <profile>
760 <id>docker-image-build-push</id>
761 <properties>
762 <docker.skip>false</docker.skip>
763 <docker.skip.build>false</docker.skip.build>
764 <docker.skip.push>false</docker.skip.push>
765 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
766 </properties>
767 </profile>
768 <profile>
769 <id>m2e</id>
770 <activation>
771 <property>
772 <name>m2e.version</name>
773 </property>
774 </activation>
775 <properties>
Gary Wu1c1fc782018-08-24 15:30:22 -0700776 <originalClassifier/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400777 </properties>
778 </profile>
779 </profiles>
JulienBeec92b1a2017-02-06 11:22:26 +0100780</project>