blob: d5cd1f4a0b67a6bff049258abf352eaff2d02388 [file] [log] [blame]
Gary Wu1c1fc782018-08-24 15:30:22 -07001<?xml version="1.0"?>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.onap.oparent</groupId>
7 <artifactId>oparent</artifactId>
Jessica Wagantall873442e2019-05-02 16:08:07 -07008 <version>2.0.0</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04009 <relativePath />
10 </parent>
11 <groupId>org.onap.so</groupId>
12 <artifactId>so</artifactId>
13 <packaging>pom</packaging>
14 <version>1.4.0-SNAPSHOT</version>
15 <name>so</name>
16 <description>This Maven project is responsible to build and package all child projects - contributions in the MSO project.
ChrisC025301d2017-01-31 11:40:03 +010017 This build can be configured to run Functional tests and to start/stop a jboss server + Mysql DB.
18 "mvn clean install -P with-integration-tests -Dintegration-tests-user=root -Dintegration-tests-group=root -Dintegration-tests-db-type=MYSQL"
19 </description>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040020 <organization>
21 <name>ONAP - SO</name>
22 <url>http://www.onap.org/</url>
23 </organization>
24 <modules>
25 <module>deployment-configs</module>
26 <module>common</module>
27 <module>mso-catalog-db</module>
28 <module>mso-api-handlers</module>
29 <module>adapters</module>
30 <module>asdc-controller</module>
31 <module>bpmn</module>
32 <module>cloudify-client</module>
33 <module>cxf-logging</module>
34 <module>so-monitoring</module>
rokenny1d9a4a62019-04-09 20:34:44 +000035 <module>vnfm-simulator</module>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040036 <module>packages</module>
37 </modules>
38 <properties>
39 <project.mso.base.folder>.</project.mso.base.folder>
40 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
42 <sonar.language>java</sonar.language>
43 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
44 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
45 <sonar.jacoco.reportPath>${project.build.directory}/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
46 <!--sonar.jacoco.itReportPath>${project.mso.base.folder}/packages/arquillian-unit-tests/target/mso-automated-tests/jacoco-it.exec</sonar.jacoco.itReportPath -->
47 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
48 <sonar.projectVersion>${project.version}</sonar.projectVersion>
49 <sonar.cpd.exclusions>**/*</sonar.cpd.exclusions>
50 <jacoco.version>0.7.5.201505241946</jacoco.version>
51 <org.apache.maven.user-settings />
Marcus G K Williams8534e7a2019-06-07 13:47:04 -070052 <openstack.version>1.5.0-SNAPSHOT</openstack.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040053 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
54 <originalClassifier>original</originalClassifier>
55 <docker.skip>true</docker.skip>
56 <docker.skip.build>true</docker.skip.build>
57 <docker.skip.push>true</docker.skip.push>
58 <docker.buildArg.project_version>${project.version}</docker.buildArg.project_version>
59 <docker.buildArg.artifact_id>${project.artifactId}</docker.buildArg.artifact_id>
60 <docker.buildArg.docker_repository>${dockerPullRepo}</docker.buildArg.docker_repository>
61 <enforcer.skip>true</enforcer.skip>
62 <nexusproxy>https://nexus.onap.org</nexusproxy>
63 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
64 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
65 <publicNexusPath>content/repositories/public/</publicNexusPath>
66 <siteNexusPath>content/sites/site/org/onap/so/${project.version}/</siteNexusPath>
67 <cxf.version>3.2.6</cxf.version>
68 <jax.ws.rs>2.1</jax.ws.rs>
Sangalang, Felix5ed98132019-07-25 10:07:49 -050069 <springboot.version>2.1.5.RELEASE</springboot.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040070 <camunda.springboot.version>3.2.0</camunda.springboot.version>
71 <format.skipValidate>false</format.skipValidate>
72 <format.skipExecute>true</format.skipExecute>
Benjamin, Max (mb388a)1a592b92019-06-17 10:51:08 -040073 <io.fabric8.version>4.1.0</io.fabric8.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040074 </properties>
75 <distributionManagement>
76 <repository>
77 <id>ecomp-releases</id>
78 <url>${nexusproxy}/${releaseNexusPath}</url>
79 </repository>
80 <snapshotRepository>
81 <id>ecomp-snapshots</id>
82 <url>${nexusproxy}/${snapshotNexusPath}</url>
83 </snapshotRepository>
84 <site>
85 <id>ecomp-site</id>
86 <url>dav:${nexusproxy}${siteNexusPath}</url>
87 </site>
88 </distributionManagement>
89 <reporting>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-javadoc-plugin</artifactId>
94 <version>2.10.4</version>
95 <configuration>
96 <failOnError>false</failOnError>
97 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
98 <docletArtifact>
99 <groupId>org.umlgraph</groupId>
100 <artifactId>umlgraph</artifactId>
101 <version>5.6</version>
102 </docletArtifact>
103 <additionalparam>-views</additionalparam>
104 <useStandardDocletOptions>true</useStandardDocletOptions>
105 </configuration>
106 </plugin>
107 </plugins>
108 </reporting>
109 <!-- configure build -->
110 <!-- *********************************************************************************************************** -->
111 <!-- Plugins and repositories -->
112 <pluginRepositories>
113 <pluginRepository>
114 <id>central</id>
115 <url>http://repo1.maven.org/maven2</url>
116 </pluginRepository>
117 <pluginRepository>
118 <id>restlet</id>
119 <url>http://maven.restlet.com</url>
120 </pluginRepository>
121 <pluginRepository>
122 <id>ecomp-public</id>
123 <url>${nexusproxy}/${publicNexusPath}</url>
124 <snapshots>
125 <enabled>false</enabled>
126 </snapshots>
127 </pluginRepository>
128 <pluginRepository>
129 <id>ecomp-release</id>
130 <url>${nexusproxy}/${releaseNexusPath}</url>
131 <snapshots>
132 <enabled>false</enabled>
133 </snapshots>
134 </pluginRepository>
135 <pluginRepository>
136 <id>ecomp-snapshots</id>
137 <url>${nexusproxy}/${snapshotNexusPath}</url>
138 <releases>
139 <enabled>false</enabled>
140 </releases>
141 </pluginRepository>
142 </pluginRepositories>
143 <repositories>
144 <repository>
145 <id>ecomp-public</id>
146 <url>https://nexus.onap.org/content/repositories/public/</url>
147 <snapshots>
148 <enabled>false</enabled>
149 </snapshots>
150 </repository>
151 <repository>
152 <id>ecomp-releases</id>
153 <url>https://nexus.onap.org/content/repositories/releases/</url>
154 <snapshots>
155 <enabled>false</enabled>
156 </snapshots>
157 </repository>
158 <repository>
159 <id>ecomp-snapshots</id>
160 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
161 <releases>
162 <enabled>false</enabled>
163 </releases>
164 </repository>
165 <repository>
166 <id>camunda-bpm</id>
167 <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url>
168 </repository>
169 <repository>
170 <id>camunda-public</id>
171 <url>https://app.camunda.com/nexus/content/groups/public</url>
172 </repository>
173 <repository>
174 <!-- TODO: remove from ONAP environemnt -->
175 <id>onap-releases</id>
176 <url>https://nexus.onap.org/content/repositories/releases/</url>
177 <snapshots>
178 <enabled>false</enabled>
179 </snapshots>
180 </repository>
181 <repository>
182 <!-- TODO: remove from ONAP environemnt -->
183 <id>onap-snapshots</id>
184 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
185 <releases>
186 <enabled>false</enabled>
187 </releases>
188 </repository>
189 </repositories>
190 <!-- *********************************************************************************************************** -->
191 <!-- Build -->
192 <build>
193 <resources>
194 <resource>
195 <directory>src/main/resources</directory>
196 <filtering>true</filtering>
197 </resource>
198 <resource>
199 <directory>target/generated-sources/license</directory>
200 <includes>
201 <include>third-party-licenses.txt</include>
202 </includes>
203 </resource>
204 <resource>
205 <directory>target/generated-resources/licenses</directory>
206 <includes>
207 <include>*.*</include>
208 </includes>
209 <targetPath>third-party-licenses</targetPath>
210 </resource>
211 </resources>
212 <plugins>
sarada prasad sahoo294a68f2019-07-04 18:27:00 +0530213 <!-- <plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400214 <groupId>org.sonatype.plugins</groupId>
215 <artifactId>nexus-staging-maven-plugin</artifactId>
sarada prasad sahoo294a68f2019-07-04 18:27:00 +0530216 <version>1.6.7</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400217 <extensions>true</extensions>
218 <configuration>
219 <nexusUrl>${nexusproxy}</nexusUrl>
220 <stagingProfileId>176c31dfe190a</stagingProfileId>
221 <serverId>ecomp-staging</serverId>
222 </configuration>
sarada prasad sahoo294a68f2019-07-04 18:27:00 +0530223 </plugin> -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400224 <plugin>
225 <groupId>org.apache.maven.plugins</groupId>
226 <artifactId>maven-deploy-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400227 <version>2.8</version>
228 <!-- This version supports the "deployAtEnd" parameter -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400229 <configuration>
230 <skip />
231 </configuration>
232 </plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400233 <plugin>
234 <groupId>org.apache.maven.plugins</groupId>
235 <artifactId>maven-compiler-plugin</artifactId>
236 <version>3.6.1</version>
237 <configuration>
238 <debug>true</debug>
239 <compilerArgument>-Xlint</compilerArgument>
240 <verbose>true</verbose>
241 <showDeprecation>true</showDeprecation>
242 <showWarnings>true</showWarnings>
243 <source>1.8</source>
244 <target>1.8</target>
245 <compilerArgs>
246 <arg>-parameters</arg>
247 </compilerArgs>
248 </configuration>
249 </plugin>
250 <plugin>
251 <groupId>org.apache.maven.plugins</groupId>
252 <artifactId>maven-ejb-plugin</artifactId>
253 <version>2.2.1</version>
254 <configuration>
255 <ejbVersion>3.0</ejbVersion>
256 <archive>
257 <manifest>
258 <addClasspath>true</addClasspath>
259 </manifest>
260 </archive>
261 </configuration>
262 </plugin>
263 <plugin>
264 <groupId>org.apache.maven.plugins</groupId>
265 <artifactId>maven-checkstyle-plugin</artifactId>
266 <version>2.17</version>
267 <configuration>
268 <skip>true</skip>
269 <includes>**/org/openecomp/**/*.java</includes>
270 <configLocation>/google_checks.xml</configLocation>
271 </configuration>
272 </plugin>
273 <plugin>
274 <groupId>org.codehaus.mojo</groupId>
275 <artifactId>findbugs-maven-plugin</artifactId>
276 <version>2.5.2</version>
277 <configuration>
278 <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile>
279 <nested>true</nested>
280 <findbugsXmlOutput>true</findbugsXmlOutput>
281 <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
282 <xmlOutput>true</xmlOutput>
283 </configuration>
284 </plugin>
285 <plugin>
286 <groupId>org.codehaus.mojo</groupId>
287 <artifactId>sonar-maven-plugin</artifactId>
288 <version>5.1</version>
289 </plugin>
290 <plugin>
291 <artifactId>maven-scm-plugin</artifactId>
292 <version>1.8.1</version>
293 <configuration>
294 <tag>${project.artifactId}-${project.version}</tag>
295 </configuration>
296 </plugin>
297 <plugin>
298 <groupId>org.apache.maven.plugins</groupId>
299 <artifactId>maven-javadoc-plugin</artifactId>
300 <version>2.9</version>
301 </plugin>
302 <plugin>
303 <groupId>org.apache.maven.plugins</groupId>
304 <artifactId>maven-site-plugin</artifactId>
305 <version>3.6</version>
306 <dependencies>
307 <dependency>
308 <groupId>org.apache.maven.wagon</groupId>
309 <artifactId>wagon-webdav-jackrabbit</artifactId>
310 <version>2.10</version>
311 </dependency>
312 </dependencies>
313 </plugin>
314 <plugin>
315 <groupId>org.codehaus.mojo</groupId>
316 <artifactId>cobertura-maven-plugin</artifactId>
317 <version>2.5.2</version>
318 <configuration>
319 <formats>
320 <format>xml</format>
321 </formats>
322 </configuration>
323 </plugin>
324 <plugin>
325 <groupId>org.codehaus.mojo</groupId>
326 <artifactId>versions-maven-plugin</artifactId>
327 <version>1.3.1</version>
328 </plugin>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400329
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400330 <plugin>
331 <groupId>com.fortify.ps.maven.plugin</groupId>
332 <artifactId>sca-maven-plugin</artifactId>
333 <version>4.20</version>
334 <configuration>
335 <buildId>mso-${project.version}</buildId>
336 <source>1.8</source>
337 </configuration>
338 </plugin>
339 <plugin>
340 <groupId>org.jacoco</groupId>
341 <artifactId>jacoco-maven-plugin</artifactId>
342 <version>${jacoco.version}</version>
343 <executions>
344 <execution>
345 <id>default-prepare-agent</id>
346 <goals>
347 <goal>prepare-agent</goal>
348 </goals>
349 </execution>
350 <execution>
351 <id>default-report</id>
352 <goals>
353 <goal>report</goal>
354 </goals>
355 </execution>
356 </executions>
357 </plugin>
358 <plugin>
359 <groupId>org.codehaus.mojo</groupId>
360 <artifactId>license-maven-plugin</artifactId>
361 <version>1.15</version>
362 <configuration>
363 <inceptionYear>2017</inceptionYear>
364 <projectName>ONAP - SO</projectName>
365 <licenseName>apache_v2</licenseName>
366 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
367 <emptyLineAfterHeader>true</emptyLineAfterHeader>
368 <trimHeaderLine>true</trimHeaderLine>
369 <processStartTag>============LICENSE_START=======================================================</processStartTag>
370 <sectionDelimiter>================================================================================</sectionDelimiter>
371 <processEndTag>============LICENSE_END=========================================================</processEndTag>
372 <includes>
373 <include>**/*.java</include>
374 <include>**/*.groovy</include>
375 </includes>
376 <excludes>
377 <exclude>**/com/att/**</exclude>
378 </excludes>
379 </configuration>
380 <executions>
381 <execution>
382 <id>verify-headers</id>
383 <goals>
384 <goal>check-file-header</goal>
385 </goals>
386 <configuration>
387 <failOnNotUptodateHeader>true</failOnNotUptodateHeader>
388 <failOnMissingHeader>true</failOnMissingHeader>
389 </configuration>
390 </execution>
391 </executions>
392 </plugin>
393 <plugin>
394 <groupId>org.codehaus.gmaven</groupId>
395 <artifactId>groovy-maven-plugin</artifactId>
396 <version>2.0</version>
397 <executions>
398 <!-- set absolute base path from super pom -->
399 <execution>
400 <id>find-basepath</id>
401 <phase>validate</phase>
402 <goals>
403 <goal>execute</goal>
404 </goals>
405 <configuration>
406 <source>
407 <![CDATA[
408 import java.io.File;
409 log.info('## define projects super pom absolute path through basepath_marker')
410 String p = "basepath_marker";
411 File f = null;
412 if( p != null ) {
413 def _max_child_poms = 0
414 while( _max_child_poms++ < 5 ) {
415 f = new File( p );
416 if( f.exists() ) {
417 break;
418 }
419 p = "../" + p;
420 }
421 }
422 if( f != null ) {
423 String basePath = f.getCanonicalPath();
424 basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) );
425 project.properties['base-path'] = basePath.replace( '\\' , '/');
426 log.info(' - used base path = ' + project.properties['base-path'] );
427 } else {
428 log.error( 'Could not find basepath_marker marker file!' );
429 System.stop( 0 );
430 }
431 ]]>
432 </source>
433 </configuration>
434 </execution>
435 </executions>
436 </plugin>
437 <plugin>
438 <groupId>net.revelc.code.formatter</groupId>
439 <artifactId>formatter-maven-plugin</artifactId>
440 <version>2.9.0</version>
441 <executions>
442 <execution>
443 <id>format-java</id>
444 <goals>
445 <goal>format</goal>
446 </goals>
subhash kumar singhf8750612019-04-19 12:24:00 +0530447 <phase>process-sources</phase>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400448 <configuration>
449 <skip>${format.skipExecute}</skip>
450 <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
451 </configuration>
452 </execution>
453 <execution>
454 <id>format-xml</id>
455 <goals>
456 <goal>format</goal>
457 </goals>
subhash kumar singhf8750612019-04-19 12:24:00 +0530458 <phase>process-sources</phase>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400459 <configuration>
460 <skip>${format.skipExecute}</skip>
461 <sourceDirectory>${project.basedir}</sourceDirectory>
462 <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile>
463 <includes>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400464 <include>pom.xml</include>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400465 </includes>
466 </configuration>
467 </execution>
468 <execution>
469 <id>validate-java</id>
470 <goals>
471 <goal>validate</goal>
472 </goals>
473 <configuration>
474 <skip>${format.skipValidate}</skip>
475 <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
476 </configuration>
477 </execution>
478 <execution>
479 <id>validate-poms</id>
480 <goals>
481 <goal>validate</goal>
482 </goals>
483 <configuration>
484 <skip>${format.skipValidate}</skip>
485 <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400486 <includes>
487 <include>pom.xml</include>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400488 </includes>
489 </configuration>
490 </execution>
491 </executions>
492 <dependencies>
493 <dependency>
494 <groupId>com.fasterxml.jackson.core</groupId>
495 <artifactId>jackson-annotations</artifactId>
496 <version>2.9.8</version>
497 </dependency>
498 </dependencies>
499 </plugin>
500 </plugins>
501 <pluginManagement>
502 <plugins>
503 <plugin>
504 <groupId>io.fabric8</groupId>
505 <artifactId>fabric8-maven-plugin</artifactId>
Benjamin, Max (mb388a)1a592b92019-06-17 10:51:08 -0400506 <version>${io.fabric8.version}</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400507 <configuration>
508 <skip>${docker.skip}</skip>
509 <skipBuild>${docker.skip.build}</skipBuild>
510 <skipPush>${docker.skip.push}</skipPush>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400511 <dockerHost>${docker.newHost}</dockerHost>
512 <!-- 1. Update address to your local docker VM. 2. Add IP to your NO_PROXY environment variable -->
513 <certPath>${docker.host.cert.path}</certPath>
Benjamin, Max (mb388a)1a592b92019-06-17 10:51:08 -0400514 <!-- Add -Ddocker.host.cert.pat="path to your local certs directory" to maven build command -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400515 <pushRegistry>${dockerPushRepo}</pushRegistry>
516 <!-- Update .m2/settings.xml Add server id settings.dockerRepository, username, and password -->
517 <pullRegistry>${dockerPullRepo}</pullRegistry>
Benjamin, Max (mb388a)1a592b92019-06-17 10:51:08 -0400518 <!-- If docker repo is not public. Update .m2/settings.xml Add server id settings.dockerRepository, username,
519 and password -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400520 <images>
521 <image>
522 <alias>service</alias>
523 <name>${artifactId}:${project.version}</name>
524 <build>
525 <dockerFileDir>${project.build.directory}</dockerFileDir>
526 </build>
527 </image>
528 </images>
529 </configuration>
530 <executions>
531 <execution>
532 <id>start</id>
533 <goals>
534 <goal>build</goal>
535 <goal>push</goal>
536 </goals>
537 </execution>
538 </executions>
539 </plugin>
540 <plugin>
541 <groupId>org.apache.maven.plugins</groupId>
542 <artifactId>maven-surefire-plugin</artifactId>
543 <version>2.20</version>
544 <configuration>
545 <systemPropertyVariables>
546 <so.log.level>DEBUG</so.log.level>
547 </systemPropertyVariables>
548 <rerunFailingTestsCount>2</rerunFailingTestsCount>
549 <parallel>classes</parallel>
550 <useUnlimitedThreads>false</useUnlimitedThreads>
551 <threadCount>1</threadCount>
552 </configuration>
553 </plugin>
554 <plugin>
555 <groupId>org.apache.maven.plugins</groupId>
556 <artifactId>maven-failsafe-plugin</artifactId>
557 <version>2.20</version>
558 <configuration>
559 <skip>true</skip>
560 <systemPropertyVariables>
561 <so.log.level>DEBUG</so.log.level>
562 </systemPropertyVariables>
563 <rerunFailingTestsCount>2</rerunFailingTestsCount>
564 </configuration>
565 </plugin>
566 <plugin>
567 <groupId>org.apache.maven.plugins</groupId>
568 <artifactId>maven-dependency-plugin</artifactId>
569 <executions>
570 <execution>
571 <id>extract-docker-file</id>
572 <goals>
573 <goal>unpack</goal>
574 </goals>
575 <configuration>
576 <artifactItems>
577 <artifactItem>
578 <groupId>org.onap.so</groupId>
579 <artifactId>deployment-configs</artifactId>
580 <version>${project.version}</version>
581 <outputDirectory>${project.build.directory}</outputDirectory>
582 <includes>*,scripts/**,certs/**, logger/*.xml</includes>
583 <excludes>Kubernetes</excludes>
584 </artifactItem>
585 </artifactItems>
586 </configuration>
587 </execution>
588 </executions>
589 </plugin>
590 <plugin>
591 <groupId>org.apache.maven.plugins</groupId>
592 <artifactId>maven-jar-plugin</artifactId>
593 <version>3.0.2</version>
594 <executions>
595 <execution>
596 <id>tests</id>
597 <goals>
598 <goal>test-jar</goal>
599 </goals>
600 <configuration>
601 <skip>false</skip>
602 </configuration>
603 </execution>
604 <execution>
605 <id>original</id>
606 <phase>package</phase>
607 <goals>
608 <goal>jar</goal>
609 </goals>
610 <configuration>
611 <classifier>${originalClassifier}</classifier>
612 <includes>
613 <include>**</include>
614 </includes>
615 </configuration>
616 </execution>
617 </executions>
618 </plugin>
619 <plugin>
620 <groupId>org.springframework.boot</groupId>
621 <artifactId>spring-boot-maven-plugin</artifactId>
622 <version>${springboot.version}</version>
623 <executions>
624 <execution>
625 <id>build-info</id>
626 <goals>
627 <goal>build-info</goal>
628 </goals>
629 </execution>
630 </executions>
631 </plugin>
632 </plugins>
633 </pluginManagement>
634 </build>
635 <!-- *********************************************************************************************************** -->
636 <!-- Dependencies -->
637 <dependencies>
638 <dependency>
639 <groupId>com.fasterxml.jackson.core</groupId>
640 <artifactId>jackson-core</artifactId>
641 </dependency>
642 <dependency>
643 <groupId>com.fasterxml.jackson.module</groupId>
644 <artifactId>jackson-module-jaxb-annotations</artifactId>
645 </dependency>
646 <dependency>
647 <groupId>com.fasterxml.jackson.core</groupId>
648 <artifactId>jackson-databind</artifactId>
649 </dependency>
650 <dependency>
651 <groupId>com.fasterxml.jackson.core</groupId>
652 <artifactId>jackson-annotations</artifactId>
653 </dependency>
654 <dependency>
655 <groupId>com.fasterxml.jackson.jaxrs</groupId>
656 <artifactId>jackson-jaxrs-base</artifactId>
657 </dependency>
658 <dependency>
659 <groupId>com.fasterxml.jackson.jaxrs</groupId>
660 <artifactId>jackson-jaxrs-json-provider</artifactId>
661 </dependency>
662 <dependency>
663 <groupId>javax.ws.rs</groupId>
664 <artifactId>javax.ws.rs-api</artifactId>
665 <version>${jax.ws.rs}</version>
666 </dependency>
667 <dependency>
668 <groupId>javax.annotation</groupId>
669 <artifactId>javax.annotation-api</artifactId>
670 <version>1.3.1</version>
671 </dependency>
672 <dependency>
673 <groupId>javax.inject</groupId>
674 <artifactId>javax.inject</artifactId>
675 <version>1</version>
676 </dependency>
677 <dependency>
678 <groupId>org.mockito</groupId>
679 <artifactId>mockito-core</artifactId>
680 </dependency>
681 <dependency>
682 <groupId>org.hamcrest</groupId>
683 <artifactId>hamcrest-core</artifactId>
684 </dependency>
685 <dependency>
686 <groupId>org.hamcrest</groupId>
687 <artifactId>hamcrest-library</artifactId>
688 </dependency>
689 <dependency>
690 <groupId>junit</groupId>
691 <artifactId>junit</artifactId>
692 <scope>test</scope>
693 </dependency>
694 <dependency>
695 <groupId>xmlunit</groupId>
696 <artifactId>xmlunit</artifactId>
697 <version>1.6</version>
698 <scope>test</scope>
699 </dependency>
700 <dependency>
701 <groupId>com.github.tomakehurst</groupId>
702 <artifactId>wiremock-standalone</artifactId>
703 <version>2.13.0</version>
704 <scope>test</scope>
705 <exclusions>
706 <exclusion>
707 <groupId>org.mortbay.jetty</groupId>
708 <artifactId>jetty</artifactId>
709 </exclusion>
710 <exclusion>
711 <groupId>com.google.guava</groupId>
712 <artifactId>guava</artifactId>
713 </exclusion>
714 <exclusion>
715 <groupId>com.fasterxml.jackson.core</groupId>
716 <artifactId>jackson-core</artifactId>
717 </exclusion>
718 <exclusion>
719 <groupId>com.fasterxml.jackson.core</groupId>
720 <artifactId>jackson-annotations</artifactId>
721 </exclusion>
722 <exclusion>
723 <groupId>com.fasterxml.jackson.core</groupId>
724 <artifactId>jackson-databind</artifactId>
725 </exclusion>
726 <exclusion>
727 <groupId>org.apache.httpcomponents</groupId>
728 <artifactId>httpclient</artifactId>
729 </exclusion>
730 <exclusion>
731 <groupId>org.skyscreamer</groupId>
732 <artifactId>jsonassert</artifactId>
733 </exclusion>
734 <exclusion>
735 <groupId>xmlunit</groupId>
736 <artifactId>xmlunit</artifactId>
737 </exclusion>
738 <exclusion>
739 <groupId>com.jayway.jsonpath</groupId>
740 <artifactId>json-path</artifactId>
741 </exclusion>
742 <exclusion>
743 <groupId>net.sf.jopt-simple</groupId>
744 <artifactId>jopt-simple</artifactId>
745 </exclusion>
746 </exclusions>
747 </dependency>
748 <dependency>
749 <groupId>com.openpojo</groupId>
750 <artifactId>openpojo</artifactId>
751 <version>0.8.10</version>
752 </dependency>
753 <dependency>
754 <groupId>com.shazam</groupId>
755 <artifactId>shazamcrest</artifactId>
756 <version>0.11</version>
757 <scope>test</scope>
758 <exclusions>
759 <exclusion>
760 <groupId>com.google.guava</groupId>
761 <artifactId>guava</artifactId>
762 </exclusion>
763 <exclusion>
764 <groupId>org.apache.commons</groupId>
765 <artifactId>commons-lang3</artifactId>
766 </exclusion>
767 </exclusions>
768 </dependency>
769 <dependency>
770 <groupId>org.assertj</groupId>
771 <artifactId>assertj-core</artifactId>
772 <version>3.11.1</version>
773 <scope>test</scope>
774 </dependency>
775 <dependency>
776 <groupId>com.googlecode.junit-toolbox</groupId>
777 <artifactId>junit-toolbox</artifactId>
778 <version>2.4</version>
779 </dependency>
780 </dependencies>
781 <dependencyManagement>
782 <dependencies>
783 <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
784 <!-- force use of version 4.5 everywhere in transient deps, aligned on WildFly 10 version -->
785 <dependency>
786 <groupId>org.apache.httpcomponents</groupId>
787 <artifactId>httpcore</artifactId>
788 <version>4.4.4</version>
789 <scope>compile</scope>
790 </dependency>
791 <dependency>
792 <groupId>commons-codec</groupId>
793 <artifactId>commons-codec</artifactId>
Sangalang, Felix785fab52019-06-21 10:46:38 -0400794 <version>1.12</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400795 <scope>compile</scope>
796 </dependency>
797 <dependency>
798 <groupId>commons-io</groupId>
799 <artifactId>commons-io</artifactId>
800 <version>2.5</version>
801 <scope>compile</scope>
802 </dependency>
803 <dependency>
804 <groupId>com.sun.xml.fastinfoset</groupId>
805 <artifactId>FastInfoset</artifactId>
806 <version>1.2.13</version>
807 <scope>compile</scope>
808 </dependency>
809 <dependency>
810 <groupId>org.springframework.boot</groupId>
811 <artifactId>spring-boot-dependencies</artifactId>
812 <version>${springboot.version}</version>
813 <type>pom</type>
814 <scope>import</scope>
815 </dependency>
816 <dependency>
817 <groupId>org.yaml</groupId>
818 <artifactId>snakeyaml</artifactId>
819 <version>1.23</version>
820 </dependency>
821 <dependency>
822 <groupId>javax.interceptor</groupId>
823 <artifactId>javax.interceptor-api</artifactId>
824 <version>1.2.2</version>
825 </dependency>
826 <dependency>
827 <groupId>org.springframework.boot</groupId>
828 <artifactId>spring-boot-starter-test</artifactId>
829 <version>${springboot.version}</version>
830 <exclusions>
831 <exclusion>
832 <groupId>com.vaadin.external.google</groupId>
833 <artifactId>android-json</artifactId>
834 </exclusion>
835 </exclusions>
836 </dependency>
837 <dependency>
838 <groupId>net.javacrumbs.shedlock</groupId>
839 <artifactId>shedlock-spring</artifactId>
840 <version>0.18.2</version>
841 </dependency>
842 <dependency>
843 <groupId>net.javacrumbs.shedlock</groupId>
844 <artifactId>shedlock-provider-jdbc-template</artifactId>
845 <version>0.18.2</version>
846 </dependency>
847 <dependency>
848 <groupId>org.flywaydb</groupId>
849 <artifactId>flyway-core</artifactId>
Sangalang, Felix5ed98132019-07-25 10:07:49 -0500850 <version>5.2.4</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400851 </dependency>
852 <dependency>
853 <groupId>org.json</groupId>
854 <artifactId>json</artifactId>
855 <version>20140107</version>
856 </dependency>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400857 </dependencies>
858 </dependencyManagement>
859 <profiles>
860 <profile>
861 <id>docker-image-build</id>
862 <properties>
863 <docker.skip>false</docker.skip>
864 <docker.skip.build>false</docker.skip.build>
865 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
866 </properties>
867 </profile>
868 <profile>
869 <id>docker-image-build-push</id>
870 <properties>
871 <docker.skip>false</docker.skip>
872 <docker.skip.build>false</docker.skip.build>
873 <docker.skip.push>false</docker.skip.push>
874 <fabric8.skipResourceValidation>true</fabric8.skipResourceValidation>
875 </properties>
876 </profile>
877 <profile>
878 <id>format</id>
879 <properties>
880 <format.skipValidate>true</format.skipValidate>
881 <format.skipExecute>false</format.skipExecute>
882 </properties>
883 </profile>
884 <profile>
885 <id>m2e</id>
886 <activation>
887 <property>
888 <name>m2e.version</name>
889 </property>
890 </activation>
891 <properties>
892 <originalClassifier />
893 </properties>
894 </profile>
895 </profiles>
JulienBeec92b1a2017-02-06 11:22:26 +0100896</project>