blob: 1be848aeef3fca73cd5056e1b72f17204c59e4fe [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)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>
504 </plugins>
505 </pluginManagement>
506 </build>
507 <!-- *********************************************************************************************************** -->
508 <!-- Dependencies -->
509 <dependencies>
510 <dependency>
511 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400512 <artifactId>jackson-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400513 </dependency>
514 <dependency>
515 <groupId>com.fasterxml.jackson.module</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400516 <artifactId>jackson-module-jaxb-annotations</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400517 </dependency>
518 <dependency>
519 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400520 <artifactId>jackson-databind</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400521 </dependency>
522 <dependency>
523 <groupId>com.fasterxml.jackson.core</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400524 <artifactId>jackson-annotations</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400525 </dependency>
526 <dependency>
527 <groupId>com.fasterxml.jackson.jaxrs</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400528 <artifactId>jackson-jaxrs-base</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400529 </dependency>
530 <dependency>
531 <groupId>com.fasterxml.jackson.jaxrs</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400532 <artifactId>jackson-jaxrs-json-provider</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400533 </dependency>
534 <dependency>
535 <groupId>javax.ws.rs</groupId>
536 <artifactId>javax.ws.rs-api</artifactId>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -0400537 <version>${jax.ws.rs}</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400538 </dependency>
539 <dependency>
540 <groupId>javax.annotation</groupId>
541 <artifactId>javax.annotation-api</artifactId>
542 <version>1.3.1</version>
543 </dependency>
544 <dependency>
545 <groupId>javax.inject</groupId>
546 <artifactId>javax.inject</artifactId>
547 <version>1</version>
548 </dependency>
549 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400550 <groupId>org.mockito</groupId>
551 <artifactId>mockito-core</artifactId>
552 </dependency>
553 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400554 <groupId>org.hamcrest</groupId>
555 <artifactId>hamcrest-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400556 </dependency>
557 <dependency>
558 <groupId>org.hamcrest</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400559 <artifactId>hamcrest-library</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400560 </dependency>
561 <dependency>
562 <groupId>junit</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400563 <artifactId>junit</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400564 <scope>test</scope>
565 </dependency>
566 <dependency>
567 <groupId>xmlunit</groupId>
568 <artifactId>xmlunit</artifactId>
569 <version>1.6</version>
570 <scope>test</scope>
571 </dependency>
572 <dependency>
573 <groupId>com.github.tomakehurst</groupId>
574 <artifactId>wiremock-standalone</artifactId>
575 <version>2.13.0</version>
576 <scope>test</scope>
577 <exclusions>
578 <exclusion>
579 <groupId>org.mortbay.jetty</groupId>
580 <artifactId>jetty</artifactId>
581 </exclusion>
582 <exclusion>
583 <groupId>com.google.guava</groupId>
584 <artifactId>guava</artifactId>
585 </exclusion>
586 <exclusion>
587 <groupId>com.fasterxml.jackson.core</groupId>
588 <artifactId>jackson-core</artifactId>
589 </exclusion>
590 <exclusion>
591 <groupId>com.fasterxml.jackson.core</groupId>
592 <artifactId>jackson-annotations</artifactId>
593 </exclusion>
594 <exclusion>
595 <groupId>com.fasterxml.jackson.core</groupId>
596 <artifactId>jackson-databind</artifactId>
597 </exclusion>
598 <exclusion>
599 <groupId>org.apache.httpcomponents</groupId>
600 <artifactId>httpclient</artifactId>
601 </exclusion>
602 <exclusion>
603 <groupId>org.skyscreamer</groupId>
604 <artifactId>jsonassert</artifactId>
605 </exclusion>
606 <exclusion>
607 <groupId>xmlunit</groupId>
608 <artifactId>xmlunit</artifactId>
609 </exclusion>
610 <exclusion>
611 <groupId>com.jayway.jsonpath</groupId>
612 <artifactId>json-path</artifactId>
613 </exclusion>
614 <exclusion>
615 <groupId>net.sf.jopt-simple</groupId>
616 <artifactId>jopt-simple</artifactId>
617 </exclusion>
618 </exclusions>
619 </dependency>
620 <dependency>
621 <groupId>com.openpojo</groupId>
622 <artifactId>openpojo</artifactId>
623 <version>0.8.10</version>
624 </dependency>
625 <dependency>
626 <groupId>com.shazam</groupId>
627 <artifactId>shazamcrest</artifactId>
628 <version>0.11</version>
629 <scope>test</scope>
630 <exclusions>
631 <exclusion>
632 <groupId>com.google.guava</groupId>
633 <artifactId>guava</artifactId>
634 </exclusion>
635 <exclusion>
636 <groupId>org.apache.commons</groupId>
637 <artifactId>commons-lang3</artifactId>
638 </exclusion>
639 </exclusions>
640 </dependency>
641 <dependency>
642 <groupId>org.assertj</groupId>
643 <artifactId>assertj-core</artifactId>
Michal Kabaj7d6e1ae2018-11-15 13:48:36 +0100644 <version>3.11.1</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400645 <scope>test</scope>
646 </dependency>
647 <dependency>
648 <groupId>com.googlecode.junit-toolbox</groupId>
649 <artifactId>junit-toolbox</artifactId>
650 <version>2.4</version>
651 </dependency>
652 </dependencies>
653 <dependencyManagement>
654 <dependencies>
655 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
656 <!-- force use of version 4.5 everywhere in transient deps, aligned on
657 WildFly 10 version -->
658 <dependency>
659 <groupId>org.apache.httpcomponents</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400660 <artifactId>httpcore</artifactId>
661 <version>4.4.4</version>
662 <scope>compile</scope>
663 </dependency>
664 <dependency>
665 <groupId>commons-codec</groupId>
666 <artifactId>commons-codec</artifactId>
667 <version>1.10</version>
668 <scope>compile</scope>
669 </dependency>
670 <dependency>
671 <groupId>commons-io</groupId>
672 <artifactId>commons-io</artifactId>
673 <version>2.5</version>
674 <scope>compile</scope>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400675 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400676 <dependency>
677 <groupId>com.sun.xml.fastinfoset</groupId>
678 <artifactId>FastInfoset</artifactId>
679 <version>1.2.13</version>
680 <scope>compile</scope>
681 </dependency>
682 <dependency>
683 <groupId>org.springframework.boot</groupId>
684 <artifactId>spring-boot-dependencies</artifactId>
685 <version>${springboot.version}</version>
686 <type>pom</type>
687 <scope>import</scope>
688 </dependency>
689 <dependency>
690 <groupId>org.yaml</groupId>
691 <artifactId>snakeyaml</artifactId>
Benjamin, Max (mb388a)a9696cd2018-09-19 09:56:15 -0400692 <version>1.23</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400693 </dependency>
694 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400695 <groupId>javax.interceptor</groupId>
696 <artifactId>javax.interceptor-api</artifactId>
697 <version>1.2.2</version>
698 </dependency>
699 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400700 <groupId>org.springframework.boot</groupId>
701 <artifactId>spring-boot-starter-test</artifactId>
702 <version>${springboot.version}</version>
703 <exclusions>
704 <exclusion>
705 <groupId>com.vaadin.external.google</groupId>
706 <artifactId>android-json</artifactId>
707 </exclusion>
708 </exclusions>
709 </dependency>
710 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400711 <groupId>net.javacrumbs.shedlock</groupId>
712 <artifactId>shedlock-spring</artifactId>
713 <version>0.18.2</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400714 </dependency>
715 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400716 <groupId>net.javacrumbs.shedlock</groupId>
717 <artifactId>shedlock-provider-jdbc-template</artifactId>
718 <version>0.18.2</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400719 </dependency>
720 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400721 <groupId>org.flywaydb</groupId>
722 <artifactId>flyway-core</artifactId>
723 <version>5.1.4</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400724 </dependency>
725 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400726 <groupId>org.json</groupId>
727 <artifactId>json</artifactId>
728 <version>20140107</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400729 </dependency>
Siva.yef46404c2018-09-20 03:28:20 +0000730 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400731 <groupId>org.yaml</groupId>
732 <artifactId>snakeyaml</artifactId>
733 <version>1.19</version>
Siva.yef46404c2018-09-20 03:28:20 +0000734 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400735 </dependencies>
736 </dependencyManagement>
737 <profiles>
738 <profile>
739 <id>docker-image-build</id>
740 <properties>
741 <docker.skip>false</docker.skip>
742 <docker.skip.build>false</docker.skip.build>
743 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
744 </properties>
745 </profile>
746 <profile>
747 <id>docker-image-build-push</id>
748 <properties>
749 <docker.skip>false</docker.skip>
750 <docker.skip.build>false</docker.skip.build>
751 <docker.skip.push>false</docker.skip.push>
752 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
753 </properties>
754 </profile>
755 <profile>
756 <id>m2e</id>
757 <activation>
758 <property>
759 <name>m2e.version</name>
760 </property>
761 </activation>
762 <properties>
Gary Wu1c1fc782018-08-24 15:30:22 -0700763 <originalClassifier/>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400764 </properties>
765 </profile>
766 </profiles>
JulienBeec92b1a2017-02-06 11:22:26 +0100767</project>