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