blob: 3756e61c6bc7a2aed6ca8603e2d3d3a510e96170 [file] [log] [blame]
Michal Jagiello8ac3e422020-05-28 10:49:20 +00001<?xml version="1.0" ?>
MukeshKumar1d9546b2020-08-11 09:55:46 +01002<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">
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04004 <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>
seshukm1c8d0202021-02-15 20:35:29 +053014 <version>1.8.0-SNAPSHOT</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040015 <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>
zm330d05adce2020-05-14 11:36:14 +080023 </organization>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040024 <modules>
25 <module>deployment-configs</module>
26 <module>common</module>
Benjamin, Max4f774ee2020-04-28 15:13:12 -040027 <module>graph-inventory</module>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040028 <module>mso-catalog-db</module>
29 <module>mso-api-handlers</module>
30 <module>adapters</module>
31 <module>asdc-controller</module>
Boslet, Coryb7c956f2020-07-06 09:58:17 -040032 <module>so-optimization-clients</module>
Boslet, Coryda366372020-07-07 11:46:43 -040033 <module>so-sdn-clients</module>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040034 <module>bpmn</module>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040035 <module>cxf-logging</module>
Mnushkin, Dmitry6514e3b2019-10-21 09:25:56 -040036 <module>so-simulator</module>
Remigiusz Janeczekb02ea7d2020-02-17 10:17:11 +010037 <module>packages</module>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040038 </modules>
39 <properties>
40 <project.mso.base.folder>.</project.mso.base.folder>
41 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43 <sonar.language>java</sonar.language>
arun chapagain258be882020-08-06 15:44:12 +053044 <java.version>11</java.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040045 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
46 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
Priyadharshini6bafbf42020-02-18 10:52:20 +000047 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040048 <!--sonar.jacoco.itReportPath>${project.mso.base.folder}/packages/arquillian-unit-tests/target/mso-automated-tests/jacoco-it.exec</sonar.jacoco.itReportPath -->
49 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
50 <sonar.projectVersion>${project.version}</sonar.projectVersion>
51 <sonar.cpd.exclusions>**/*</sonar.cpd.exclusions>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040052 <org.apache.maven.user-settings />
mukesh.paliwal1@huawei.com78d36ba2020-08-18 11:46:39 +053053 <openstack.version>1.7.1</openstack.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040054 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
55 <originalClassifier>original</originalClassifier>
56 <docker.skip>true</docker.skip>
57 <docker.skip.build>true</docker.skip.build>
58 <docker.skip.push>true</docker.skip.push>
59 <docker.buildArg.project_version>${project.version}</docker.buildArg.project_version>
60 <docker.buildArg.artifact_id>${project.artifactId}</docker.buildArg.artifact_id>
61 <docker.buildArg.docker_repository>${dockerPullRepo}</docker.buildArg.docker_repository>
Benjamin, Max7d6464b2020-01-10 10:16:16 -050062 <enforcer.skip>false</enforcer.skip>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040063 <nexusproxy>https://nexus.onap.org</nexusproxy>
64 <releaseNexusPath>content/repositories/releases/</releaseNexusPath>
65 <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath>
66 <publicNexusPath>content/repositories/public/</publicNexusPath>
67 <siteNexusPath>content/sites/site/org/onap/so/${project.version}/</siteNexusPath>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050068 <cxf.version>3.4.1</cxf.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040069 <jax.ws.rs>2.1</jax.ws.rs>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050070 <springboot.version>2.3.7.RELEASE</springboot.version>
Benjamin, Max (mb388a)4209b112021-01-13 12:37:09 -050071 <aaf.version>2.1.21</aaf.version>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050072 <camunda.springboot.version>7.14.0</camunda.springboot.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040073 <format.skipValidate>false</format.skipValidate>
74 <format.skipExecute>true</format.skipExecute>
Benjamin, Max5f57d092020-05-13 17:48:03 -040075 <io.fabric8.version>0.33.0</io.fabric8.version>
arun chapagain7ac8b942020-08-10 15:28:02 +053076 <appc.client.version>1.7.2</appc.client.version>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -050077 <bowman.client.version>0.9.0</bowman.client.version>
Benjamin, Max9868f172020-05-18 16:37:51 -040078 <aaf.cadi.version>2.1.15</aaf.cadi.version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040079 </properties>
80 <distributionManagement>
81 <repository>
82 <id>ecomp-releases</id>
83 <url>${nexusproxy}/${releaseNexusPath}</url>
84 </repository>
85 <snapshotRepository>
86 <id>ecomp-snapshots</id>
87 <url>${nexusproxy}/${snapshotNexusPath}</url>
88 </snapshotRepository>
89 <site>
90 <id>ecomp-site</id>
91 <url>dav:${nexusproxy}${siteNexusPath}</url>
92 </site>
93 </distributionManagement>
94 <reporting>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-javadoc-plugin</artifactId>
99 <version>2.10.4</version>
100 <configuration>
101 <failOnError>false</failOnError>
102 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
103 <docletArtifact>
104 <groupId>org.umlgraph</groupId>
105 <artifactId>umlgraph</artifactId>
106 <version>5.6</version>
107 </docletArtifact>
108 <additionalparam>-views</additionalparam>
109 <useStandardDocletOptions>true</useStandardDocletOptions>
110 </configuration>
111 </plugin>
112 </plugins>
113 </reporting>
114 <!-- configure build -->
115 <!-- *********************************************************************************************************** -->
116 <!-- Plugins and repositories -->
117 <pluginRepositories>
118 <pluginRepository>
119 <id>central</id>
120 <url>http://repo1.maven.org/maven2</url>
121 </pluginRepository>
122 <pluginRepository>
123 <id>restlet</id>
124 <url>http://maven.restlet.com</url>
125 </pluginRepository>
126 <pluginRepository>
127 <id>ecomp-public</id>
128 <url>${nexusproxy}/${publicNexusPath}</url>
129 <snapshots>
130 <enabled>false</enabled>
131 </snapshots>
132 </pluginRepository>
133 <pluginRepository>
134 <id>ecomp-release</id>
135 <url>${nexusproxy}/${releaseNexusPath}</url>
136 <snapshots>
137 <enabled>false</enabled>
138 </snapshots>
139 </pluginRepository>
140 <pluginRepository>
141 <id>ecomp-snapshots</id>
142 <url>${nexusproxy}/${snapshotNexusPath}</url>
143 <releases>
144 <enabled>false</enabled>
145 </releases>
146 </pluginRepository>
147 </pluginRepositories>
148 <repositories>
149 <repository>
150 <id>ecomp-public</id>
151 <url>https://nexus.onap.org/content/repositories/public/</url>
152 <snapshots>
153 <enabled>false</enabled>
154 </snapshots>
155 </repository>
156 <repository>
157 <id>ecomp-releases</id>
158 <url>https://nexus.onap.org/content/repositories/releases/</url>
159 <snapshots>
160 <enabled>false</enabled>
161 </snapshots>
162 </repository>
163 <repository>
164 <id>ecomp-snapshots</id>
165 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
166 <releases>
167 <enabled>false</enabled>
168 </releases>
169 </repository>
170 <repository>
171 <id>camunda-bpm</id>
172 <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url>
173 </repository>
174 <repository>
175 <id>camunda-public</id>
176 <url>https://app.camunda.com/nexus/content/groups/public</url>
177 </repository>
178 <repository>
179 <!-- TODO: remove from ONAP environemnt -->
180 <id>onap-releases</id>
181 <url>https://nexus.onap.org/content/repositories/releases/</url>
182 <snapshots>
183 <enabled>false</enabled>
184 </snapshots>
185 </repository>
186 <repository>
187 <!-- TODO: remove from ONAP environemnt -->
188 <id>onap-snapshots</id>
189 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
190 <releases>
191 <enabled>false</enabled>
192 </releases>
193 </repository>
194 </repositories>
195 <!-- *********************************************************************************************************** -->
196 <!-- Build -->
197 <build>
198 <resources>
199 <resource>
200 <directory>src/main/resources</directory>
201 <filtering>true</filtering>
202 </resource>
203 <resource>
204 <directory>target/generated-sources/license</directory>
205 <includes>
206 <include>third-party-licenses.txt</include>
207 </includes>
208 </resource>
209 <resource>
210 <directory>target/generated-resources/licenses</directory>
211 <includes>
212 <include>*.*</include>
213 </includes>
214 <targetPath>third-party-licenses</targetPath>
215 </resource>
216 </resources>
217 <plugins>
Benjamin, Max9868f172020-05-18 16:37:51 -0400218 <!-- <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId>
219 <version>1.6.7</version> <extensions>true</extensions> <configuration> <nexusUrl>${nexusproxy}</nexusUrl>
220 <stagingProfileId>176c31dfe190a</stagingProfileId> <serverId>ecomp-staging</serverId>
221 </configuration> </plugin> -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400222 <plugin>
223 <groupId>org.apache.maven.plugins</groupId>
224 <artifactId>maven-deploy-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400225 <version>2.8</version>
226 <!-- This version supports the "deployAtEnd" parameter -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400227 <configuration>
228 <skip />
229 </configuration>
230 </plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400231 <plugin>
232 <groupId>org.apache.maven.plugins</groupId>
233 <artifactId>maven-compiler-plugin</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400234 <version>3.8.0</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400235 <configuration>
236 <debug>true</debug>
237 <compilerArgument>-Xlint</compilerArgument>
238 <verbose>true</verbose>
239 <showDeprecation>true</showDeprecation>
240 <showWarnings>true</showWarnings>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400241 <compilerArgs>
242 <arg>-parameters</arg>
243 </compilerArgs>
Benjamin, Maxa5de2db2020-08-07 11:36:18 -0400244 <forceJavacCompilerUse>true</forceJavacCompilerUse>
245 <source>11</source>
246 <target>11</target>
247 <release>11</release>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400248 </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>
arun chapagain258be882020-08-06 15:44:12 +0530336 <source>${java.version}</source>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400337 </configuration>
338 </plugin>
339 <plugin>
tragait1ae4a562019-10-21 14:26:08 -0400340 <groupId>org.jacoco</groupId>
341 <artifactId>jacoco-maven-plugin</artifactId>
tragait1ae4a562019-10-21 14:26:08 -0400342 <executions>
343 <execution>
344 <id>prepare-agent</id>
345 <goals>
346 <goal>prepare-agent</goal>
347 </goals>
348 </execution>
349 <execution>
350 <id>report</id>
351 <goals>
352 <goal>report</goal>
353 </goals>
354 <configuration>
355 <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
356 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
357 </configuration>
358 </execution>
359 </executions>
360 </plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400361 <plugin>
362 <groupId>org.codehaus.mojo</groupId>
363 <artifactId>license-maven-plugin</artifactId>
364 <version>1.15</version>
365 <configuration>
366 <inceptionYear>2017</inceptionYear>
367 <projectName>ONAP - SO</projectName>
368 <licenseName>apache_v2</licenseName>
369 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
370 <emptyLineAfterHeader>true</emptyLineAfterHeader>
371 <trimHeaderLine>true</trimHeaderLine>
372 <processStartTag>============LICENSE_START=======================================================</processStartTag>
373 <sectionDelimiter>================================================================================</sectionDelimiter>
374 <processEndTag>============LICENSE_END=========================================================</processEndTag>
375 <includes>
376 <include>**/*.java</include>
377 <include>**/*.groovy</include>
378 </includes>
379 <excludes>
380 <exclude>**/com/att/**</exclude>
381 </excludes>
382 </configuration>
383 <executions>
384 <execution>
385 <id>verify-headers</id>
386 <goals>
387 <goal>check-file-header</goal>
388 </goals>
389 <configuration>
390 <failOnNotUptodateHeader>true</failOnNotUptodateHeader>
391 <failOnMissingHeader>true</failOnMissingHeader>
392 </configuration>
393 </execution>
394 </executions>
395 </plugin>
396 <plugin>
397 <groupId>org.codehaus.gmaven</groupId>
398 <artifactId>groovy-maven-plugin</artifactId>
399 <version>2.0</version>
400 <executions>
401 <!-- set absolute base path from super pom -->
402 <execution>
403 <id>find-basepath</id>
404 <phase>validate</phase>
405 <goals>
406 <goal>execute</goal>
407 </goals>
408 <configuration>
409 <source>
410 <![CDATA[
411 import java.io.File;
412 log.info('## define projects super pom absolute path through basepath_marker')
413 String p = "basepath_marker";
414 File f = null;
415 if( p != null ) {
416 def _max_child_poms = 0
417 while( _max_child_poms++ < 5 ) {
418 f = new File( p );
419 if( f.exists() ) {
420 break;
421 }
422 p = "../" + p;
423 }
424 }
425 if( f != null ) {
426 String basePath = f.getCanonicalPath();
427 basePath = basePath.substring( 0, basePath.lastIndexOf( File.separator ) );
428 project.properties['base-path'] = basePath.replace( '\\' , '/');
429 log.info(' - used base path = ' + project.properties['base-path'] );
430 } else {
431 log.error( 'Could not find basepath_marker marker file!' );
432 System.stop( 0 );
433 }
434 ]]>
435 </source>
436 </configuration>
437 </execution>
438 </executions>
439 </plugin>
440 <plugin>
441 <groupId>net.revelc.code.formatter</groupId>
442 <artifactId>formatter-maven-plugin</artifactId>
443 <version>2.9.0</version>
444 <executions>
445 <execution>
446 <id>format-java</id>
447 <goals>
448 <goal>format</goal>
449 </goals>
subhash kumar singhf8750612019-04-19 12:24:00 +0530450 <phase>process-sources</phase>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400451 <configuration>
452 <skip>${format.skipExecute}</skip>
453 <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
454 </configuration>
455 </execution>
456 <execution>
457 <id>format-xml</id>
458 <goals>
459 <goal>format</goal>
460 </goals>
subhash kumar singhf8750612019-04-19 12:24:00 +0530461 <phase>process-sources</phase>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400462 <configuration>
463 <skip>${format.skipExecute}</skip>
464 <sourceDirectory>${project.basedir}</sourceDirectory>
465 <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile>
466 <includes>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400467 <include>pom.xml</include>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400468 </includes>
469 </configuration>
470 </execution>
471 <execution>
472 <id>validate-java</id>
473 <goals>
474 <goal>validate</goal>
475 </goals>
476 <configuration>
477 <skip>${format.skipValidate}</skip>
478 <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>
479 </configuration>
480 </execution>
481 <execution>
482 <id>validate-poms</id>
483 <goals>
484 <goal>validate</goal>
485 </goals>
486 <configuration>
487 <skip>${format.skipValidate}</skip>
488 <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400489 <includes>
490 <include>pom.xml</include>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400491 </includes>
492 </configuration>
493 </execution>
494 </executions>
495 <dependencies>
496 <dependency>
497 <groupId>com.fasterxml.jackson.core</groupId>
498 <artifactId>jackson-annotations</artifactId>
499 <version>2.9.8</version>
500 </dependency>
501 </dependencies>
502 </plugin>
Benjamin, Max7d6464b2020-01-10 10:16:16 -0500503 <plugin>
504 <groupId>org.apache.maven.plugins</groupId>
505 <artifactId>maven-enforcer-plugin</artifactId>
506 <version>3.0.0-M3</version>
507 <executions>
508 <execution>
kjaniak48fbeba2019-12-19 13:08:05 +0100509 <id>enforce-property</id>
510 <configuration>
511 <skip>true</skip>
512 </configuration>
Benjamin, Max7d6464b2020-01-10 10:16:16 -0500513 </execution>
514 <execution>
kjaniak48fbeba2019-12-19 13:08:05 +0100515 <id>enforce-no-snapshots</id>
516 <configuration>
517 <skip>true</skip>
518 </configuration>
Benjamin, Max7d6464b2020-01-10 10:16:16 -0500519 </execution>
520 <execution>
521 <id>enforce-banned-dependencies</id>
522 <goals>
523 <goal>enforce</goal>
524 </goals>
525 <configuration>
526 <rules>
527 <bannedDependencies>
528 <excludes>
529 <exclude>org.powermock</exclude>
530 </excludes>
531 <searchTransitive>false</searchTransitive>
532 </bannedDependencies>
533 </rules>
534 <fail>true</fail>
535 </configuration>
536 </execution>
537 </executions>
538 </plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400539 </plugins>
540 <pluginManagement>
541 <plugins>
Benjamin, Max71d87a32020-06-24 10:44:53 -0400542 <plugin>
Boslet, Coryf5c3da82020-05-20 11:39:21 -0400543 <groupId>org.eclipse.m2e</groupId>
544 <artifactId>lifecycle-mapping</artifactId>
545 <version>1.0.0</version>
546 <configuration>
547 <lifecycleMappingMetadata>
548 <pluginExecutions>
549 <pluginExecution>
550 <pluginExecutionFilter>
551 <groupId>org.apache.maven.plugins</groupId>
552 <artifactId>maven-checkstyle-plugin</artifactId>
553 <versionRange>[1.0.0,)</versionRange>
554 <goals>
555 <goal>check</goal>
556 </goals>
557 </pluginExecutionFilter>
558 <action>
559 <execute />
560 </action>
561 </pluginExecution>
Benjamin, Max71d87a32020-06-24 10:44:53 -0400562 <pluginExecution>
Boslet, Coryf5c3da82020-05-20 11:39:21 -0400563 <pluginExecutionFilter>
564 <groupId>org.codehaus.gmaven</groupId>
565 <artifactId>groovy-maven-plugin</artifactId>
566 <versionRange>[1.0.0,)</versionRange>
567 <goals>
568 <goal>execute</goal>
569 </goals>
570 </pluginExecutionFilter>
571 <action>
572 <execute />
573 </action>
574 </pluginExecution>
575 </pluginExecutions>
576 </lifecycleMappingMetadata>
577 </configuration>
578 </plugin>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400579 <plugin>
580 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -0400581 <artifactId>docker-maven-plugin</artifactId>
Benjamin, Max (mb388a)1a592b92019-06-17 10:51:08 -0400582 <version>${io.fabric8.version}</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400583 <configuration>
584 <skip>${docker.skip}</skip>
585 <skipBuild>${docker.skip.build}</skipBuild>
586 <skipPush>${docker.skip.push}</skipPush>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400587 <dockerHost>${docker.newHost}</dockerHost>
Benjamin, Max9868f172020-05-18 16:37:51 -0400588 <!-- 1. Update address to your local docker VM. 2. Add IP to
589 your NO_PROXY environment variable -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400590 <certPath>${docker.host.cert.path}</certPath>
Benjamin, Max9868f172020-05-18 16:37:51 -0400591 <!-- Add -Ddocker.host.cert.pat="path to your local certs directory"
592 to maven build command -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400593 <pushRegistry>${dockerPushRepo}</pushRegistry>
Benjamin, Max9868f172020-05-18 16:37:51 -0400594 <!-- Update .m2/settings.xml Add server id settings.dockerRepository,
595 username, and password -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400596 <pullRegistry>${dockerPullRepo}</pullRegistry>
Benjamin, Max9868f172020-05-18 16:37:51 -0400597 <!-- If docker repo is not public. Update .m2/settings.xml Add
598 server id settings.dockerRepository, username, and password -->
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400599 <images>
600 <image>
601 <alias>service</alias>
waqas.ikram12bfb7b2020-04-08 15:48:21 +0100602 <name>${project.artifactId}:${project.version}</name>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400603 <build>
604 <dockerFileDir>${project.build.directory}</dockerFileDir>
605 </build>
606 </image>
607 </images>
608 </configuration>
609 <executions>
610 <execution>
611 <id>start</id>
612 <goals>
613 <goal>build</goal>
614 <goal>push</goal>
615 </goals>
616 </execution>
617 </executions>
618 </plugin>
619 <plugin>
620 <groupId>org.apache.maven.plugins</groupId>
621 <artifactId>maven-surefire-plugin</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400622 <version>2.22.2</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400623 <configuration>
624 <systemPropertyVariables>
625 <so.log.level>DEBUG</so.log.level>
626 </systemPropertyVariables>
627 <rerunFailingTestsCount>2</rerunFailingTestsCount>
628 <parallel>classes</parallel>
629 <useUnlimitedThreads>false</useUnlimitedThreads>
630 <threadCount>1</threadCount>
631 </configuration>
632 </plugin>
633 <plugin>
634 <groupId>org.apache.maven.plugins</groupId>
635 <artifactId>maven-failsafe-plugin</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400636 <version>2.22.2</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400637 <configuration>
638 <skip>true</skip>
639 <systemPropertyVariables>
640 <so.log.level>DEBUG</so.log.level>
641 </systemPropertyVariables>
642 <rerunFailingTestsCount>2</rerunFailingTestsCount>
643 </configuration>
644 </plugin>
645 <plugin>
646 <groupId>org.apache.maven.plugins</groupId>
647 <artifactId>maven-dependency-plugin</artifactId>
648 <executions>
649 <execution>
650 <id>extract-docker-file</id>
651 <goals>
652 <goal>unpack</goal>
653 </goals>
654 <configuration>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400655 <skip>true</skip>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400656 <artifactItems>
657 <artifactItem>
658 <groupId>org.onap.so</groupId>
659 <artifactId>deployment-configs</artifactId>
660 <version>${project.version}</version>
661 <outputDirectory>${project.build.directory}</outputDirectory>
662 <includes>*,scripts/**,certs/**, logger/*.xml</includes>
663 <excludes>Kubernetes</excludes>
664 </artifactItem>
665 </artifactItems>
666 </configuration>
667 </execution>
668 </executions>
669 </plugin>
670 <plugin>
671 <groupId>org.apache.maven.plugins</groupId>
672 <artifactId>maven-jar-plugin</artifactId>
673 <version>3.0.2</version>
674 <executions>
675 <execution>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400676 <id>original</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -0400677 <phase>none</phase>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400678 <goals>
679 <goal>jar</goal>
680 </goals>
681 <configuration>
682 <classifier>${originalClassifier}</classifier>
683 <includes>
684 <include>**</include>
685 </includes>
686 </configuration>
687 </execution>
688 </executions>
689 </plugin>
690 <plugin>
691 <groupId>org.springframework.boot</groupId>
692 <artifactId>spring-boot-maven-plugin</artifactId>
693 <version>${springboot.version}</version>
694 <executions>
695 <execution>
696 <id>build-info</id>
697 <goals>
698 <goal>build-info</goal>
699 </goals>
700 </execution>
701 </executions>
702 </plugin>
703 </plugins>
704 </pluginManagement>
705 </build>
706 <!-- *********************************************************************************************************** -->
707 <!-- Dependencies -->
708 <dependencies>
Bhatt, Premaae9a2bd2019-09-17 08:08:12 -0400709 <dependency>
710 <groupId>org.onap.logging-analytics</groupId>
711 <artifactId>logging-slf4j</artifactId>
Bhatt, Premaae9a2bd2019-09-17 08:08:12 -0400712 </dependency>
Plummer, Brittany2ede5f02019-09-10 11:29:42 -0400713 <dependency>
714 <groupId>org.onap.logging-analytics</groupId>
715 <artifactId>logging-filter-base</artifactId>
Plummer, Brittany2ede5f02019-09-10 11:29:42 -0400716 </dependency>
717 <dependency>
718 <groupId>org.onap.logging-analytics</groupId>
719 <artifactId>logging-filter-spring</artifactId>
Plummer, Brittany2ede5f02019-09-10 11:29:42 -0400720 </dependency>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400721 <dependency>
722 <groupId>com.fasterxml.jackson.core</groupId>
723 <artifactId>jackson-core</artifactId>
724 </dependency>
725 <dependency>
726 <groupId>com.fasterxml.jackson.module</groupId>
727 <artifactId>jackson-module-jaxb-annotations</artifactId>
728 </dependency>
729 <dependency>
730 <groupId>com.fasterxml.jackson.core</groupId>
731 <artifactId>jackson-databind</artifactId>
732 </dependency>
733 <dependency>
734 <groupId>com.fasterxml.jackson.core</groupId>
735 <artifactId>jackson-annotations</artifactId>
736 </dependency>
737 <dependency>
738 <groupId>com.fasterxml.jackson.jaxrs</groupId>
739 <artifactId>jackson-jaxrs-base</artifactId>
740 </dependency>
741 <dependency>
742 <groupId>com.fasterxml.jackson.jaxrs</groupId>
743 <artifactId>jackson-jaxrs-json-provider</artifactId>
744 </dependency>
745 <dependency>
746 <groupId>javax.ws.rs</groupId>
747 <artifactId>javax.ws.rs-api</artifactId>
748 <version>${jax.ws.rs}</version>
749 </dependency>
750 <dependency>
751 <groupId>javax.annotation</groupId>
752 <artifactId>javax.annotation-api</artifactId>
753 <version>1.3.1</version>
754 </dependency>
755 <dependency>
756 <groupId>javax.inject</groupId>
757 <artifactId>javax.inject</artifactId>
758 <version>1</version>
759 </dependency>
760 <dependency>
761 <groupId>org.mockito</groupId>
762 <artifactId>mockito-core</artifactId>
763 </dependency>
764 <dependency>
765 <groupId>org.hamcrest</groupId>
766 <artifactId>hamcrest-core</artifactId>
767 </dependency>
768 <dependency>
769 <groupId>org.hamcrest</groupId>
770 <artifactId>hamcrest-library</artifactId>
771 </dependency>
772 <dependency>
773 <groupId>junit</groupId>
774 <artifactId>junit</artifactId>
775 <scope>test</scope>
776 </dependency>
777 <dependency>
778 <groupId>xmlunit</groupId>
779 <artifactId>xmlunit</artifactId>
780 <version>1.6</version>
781 <scope>test</scope>
782 </dependency>
783 <dependency>
784 <groupId>com.github.tomakehurst</groupId>
785 <artifactId>wiremock-standalone</artifactId>
786 <version>2.13.0</version>
787 <scope>test</scope>
788 <exclusions>
789 <exclusion>
790 <groupId>org.mortbay.jetty</groupId>
791 <artifactId>jetty</artifactId>
792 </exclusion>
793 <exclusion>
794 <groupId>com.google.guava</groupId>
795 <artifactId>guava</artifactId>
796 </exclusion>
797 <exclusion>
798 <groupId>com.fasterxml.jackson.core</groupId>
799 <artifactId>jackson-core</artifactId>
800 </exclusion>
801 <exclusion>
802 <groupId>com.fasterxml.jackson.core</groupId>
803 <artifactId>jackson-annotations</artifactId>
804 </exclusion>
805 <exclusion>
806 <groupId>com.fasterxml.jackson.core</groupId>
807 <artifactId>jackson-databind</artifactId>
808 </exclusion>
809 <exclusion>
810 <groupId>org.apache.httpcomponents</groupId>
811 <artifactId>httpclient</artifactId>
812 </exclusion>
813 <exclusion>
814 <groupId>org.skyscreamer</groupId>
815 <artifactId>jsonassert</artifactId>
816 </exclusion>
817 <exclusion>
818 <groupId>xmlunit</groupId>
819 <artifactId>xmlunit</artifactId>
820 </exclusion>
821 <exclusion>
822 <groupId>com.jayway.jsonpath</groupId>
823 <artifactId>json-path</artifactId>
824 </exclusion>
825 <exclusion>
826 <groupId>net.sf.jopt-simple</groupId>
827 <artifactId>jopt-simple</artifactId>
828 </exclusion>
829 </exclusions>
830 </dependency>
831 <dependency>
832 <groupId>com.openpojo</groupId>
833 <artifactId>openpojo</artifactId>
Benjamin, Max9868f172020-05-18 16:37:51 -0400834 <version>0.8.13</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400835 </dependency>
836 <dependency>
837 <groupId>com.shazam</groupId>
838 <artifactId>shazamcrest</artifactId>
839 <version>0.11</version>
840 <scope>test</scope>
841 <exclusions>
842 <exclusion>
843 <groupId>com.google.guava</groupId>
844 <artifactId>guava</artifactId>
845 </exclusion>
846 <exclusion>
847 <groupId>org.apache.commons</groupId>
848 <artifactId>commons-lang3</artifactId>
849 </exclusion>
850 </exclusions>
851 </dependency>
852 <dependency>
853 <groupId>org.assertj</groupId>
854 <artifactId>assertj-core</artifactId>
855 <version>3.11.1</version>
856 <scope>test</scope>
857 </dependency>
858 <dependency>
Benjamin, Max9868f172020-05-18 16:37:51 -0400859 <groupId>org.ow2.asm</groupId>
860 <artifactId>asm</artifactId>
861 <version>7.0</version>
862 <scope>test</scope>
863 </dependency>
864 <dependency>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400865 <groupId>com.googlecode.junit-toolbox</groupId>
866 <artifactId>junit-toolbox</artifactId>
867 <version>2.4</version>
868 </dependency>
869 </dependencies>
870 <dependencyManagement>
871 <dependencies>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400872 <dependency>
Bonkur, Venkat28a07e82020-04-14 15:49:11 -0400873 <groupId>org.onap.logging-analytics</groupId>
874 <artifactId>logging-slf4j</artifactId>
Benjamin, Max93198c22021-01-11 12:24:35 -0500875 <version>1.6.9-SNAPSHOT</version>
Bonkur, Venkat28a07e82020-04-14 15:49:11 -0400876 </dependency>
877 <dependency>
878 <groupId>org.onap.logging-analytics</groupId>
879 <artifactId>logging-filter-base</artifactId>
Benjamin, Max93198c22021-01-11 12:24:35 -0500880 <version>1.6.9-SNAPSHOT</version>
Bonkur, Venkat28a07e82020-04-14 15:49:11 -0400881 </dependency>
882 <dependency>
883 <groupId>org.onap.logging-analytics</groupId>
884 <artifactId>logging-filter-spring</artifactId>
Benjamin, Max93198c22021-01-11 12:24:35 -0500885 <version>1.6.9-SNAPSHOT</version>
Bonkur, Venkat28a07e82020-04-14 15:49:11 -0400886 </dependency>
887 <dependency>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400888 <groupId>org.apache.httpcomponents</groupId>
889 <artifactId>httpcore</artifactId>
890 <version>4.4.4</version>
891 <scope>compile</scope>
892 </dependency>
893 <dependency>
894 <groupId>commons-codec</groupId>
895 <artifactId>commons-codec</artifactId>
Sangalang, Felix785fab52019-06-21 10:46:38 -0400896 <version>1.12</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400897 <scope>compile</scope>
898 </dependency>
899 <dependency>
900 <groupId>commons-io</groupId>
901 <artifactId>commons-io</artifactId>
902 <version>2.5</version>
903 <scope>compile</scope>
904 </dependency>
905 <dependency>
906 <groupId>com.sun.xml.fastinfoset</groupId>
907 <artifactId>FastInfoset</artifactId>
908 <version>1.2.13</version>
909 <scope>compile</scope>
910 </dependency>
911 <dependency>
912 <groupId>org.springframework.boot</groupId>
913 <artifactId>spring-boot-dependencies</artifactId>
914 <version>${springboot.version}</version>
915 <type>pom</type>
916 <scope>import</scope>
917 </dependency>
918 <dependency>
919 <groupId>org.yaml</groupId>
920 <artifactId>snakeyaml</artifactId>
deepikasatheeshf70e8de2020-07-29 22:53:54 -0700921 <version>1.26</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400922 </dependency>
923 <dependency>
924 <groupId>javax.interceptor</groupId>
925 <artifactId>javax.interceptor-api</artifactId>
926 <version>1.2.2</version>
927 </dependency>
928 <dependency>
929 <groupId>org.springframework.boot</groupId>
930 <artifactId>spring-boot-starter-test</artifactId>
931 <version>${springboot.version}</version>
932 <exclusions>
933 <exclusion>
934 <groupId>com.vaadin.external.google</groupId>
935 <artifactId>android-json</artifactId>
936 </exclusion>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500937 <exclusion>
938 <groupId>org.junit.jupiter</groupId>
939 <artifactId>junit-jupiter</artifactId>
940 </exclusion>
941 <exclusion>
942 <groupId>org.junit.vintage</groupId>
943 <artifactId>junit-vintage-engine</artifactId>
944 </exclusion>
945 <exclusion>
946 <groupId>org.mockito</groupId>
947 <artifactId>mockito-junit-jupiter</artifactId>
948 </exclusion>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400949 </exclusions>
950 </dependency>
951 <dependency>
952 <groupId>net.javacrumbs.shedlock</groupId>
953 <artifactId>shedlock-spring</artifactId>
Smokowski, Steven2e0f12e2019-12-03 07:51:11 -0500954 <version>4.0.0</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400955 </dependency>
956 <dependency>
957 <groupId>net.javacrumbs.shedlock</groupId>
958 <artifactId>shedlock-provider-jdbc-template</artifactId>
Smokowski, Steven2e0f12e2019-12-03 07:51:11 -0500959 <version>4.0.0</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400960 </dependency>
961 <dependency>
962 <groupId>org.flywaydb</groupId>
963 <artifactId>flyway-core</artifactId>
Benjamin, Max (mb388a)d5968f52021-02-05 20:34:11 -0500964 <version>6.5.7</version>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -0400965 </dependency>
966 <dependency>
967 <groupId>org.json</groupId>
968 <artifactId>json</artifactId>
969 <version>20140107</version>
970 </dependency>
Boslet, Coryfd2aba22020-05-08 14:58:31 -0400971 <dependency>
972 <groupId>org.onap.aai.schema-service</groupId>
973 <artifactId>aai-schema</artifactId>
Benjamin, Max (mb388a)bdd94b12021-01-06 15:38:37 -0500974 <version>1.8.1</version>
Boslet, Coryfd2aba22020-05-08 14:58:31 -0400975 </dependency>
Benjamin, Max (mb388a)733c4602020-10-08 15:31:17 -0400976 <dependency>
Benjamin, Max23f8d802020-10-16 13:18:43 -0400977 <groupId>org.apache.cxf</groupId>
978 <artifactId>cxf-rt-rs-client</artifactId>
979 <version>${cxf.version}</version>
980 <exclusions>
981 <exclusion>
982 <groupId>org.jboss.spec.javax.rmi</groupId>
983 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
984 </exclusion>
985 </exclusions>
986 </dependency>
987 <dependency>
988 <groupId>org.apache.cxf</groupId>
989 <artifactId>cxf-rt-bindings-soap</artifactId>
990 <version>${cxf.version}</version>
991 <exclusions>
992 <exclusion>
993 <groupId>org.jboss.spec.javax.rmi</groupId>
994 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
995 </exclusion>
996 </exclusions>
997 </dependency>
998 <dependency>
999 <groupId>org.apache.cxf</groupId>
1000 <artifactId>cxf-rt-transports-http</artifactId>
1001 <version>${cxf.version}</version>
1002 <exclusions>
1003 <exclusion>
1004 <groupId>org.jboss.spec.javax.rmi</groupId>
1005 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1006 </exclusion>
1007 </exclusions>
1008 </dependency>
1009 <dependency>
1010 <groupId>org.apache.cxf</groupId>
1011 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
1012 <version>${cxf.version}</version>
1013 <exclusions>
1014 <exclusion>
1015 <groupId>org.jboss.spec.javax.rmi</groupId>
1016 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1017 </exclusion>
1018 </exclusions>
1019 </dependency>
1020 <dependency>
1021 <groupId>org.apache.cxf</groupId>
1022 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
1023 <version>${cxf.version}</version>
1024 <exclusions>
1025 <exclusion>
1026 <groupId>org.jboss.spec.javax.rmi</groupId>
1027 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1028 </exclusion>
1029 </exclusions>
1030 </dependency>
1031 <dependency>
1032 <groupId>org.apache.cxf</groupId>
1033 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
1034 <version>${cxf.version}</version>
1035 <exclusions>
1036 <exclusion>
1037 <groupId>org.jboss.spec.javax.rmi</groupId>
1038 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1039 </exclusion>
1040 </exclusions>
1041 </dependency>
Benjamin, Max (mb388a)4209b112021-01-13 12:37:09 -05001042 <dependency>
Benjamin, Max (mb388a)b8b04642021-01-23 16:07:59 -05001043 <groupId>org.apache.cxf</groupId>
1044 <artifactId>cxf-rt-rs-service-description-openapi-v3</artifactId>
1045 <version>${cxf.version}</version>
1046 <exclusions>
1047 <exclusion>
1048 <groupId>org.jboss.spec.javax.rmi</groupId>
1049 <artifactId>jboss-rmi-api_1.0_spec</artifactId>
1050 </exclusion>
1051 </exclusions>
1052 </dependency>
1053 <dependency>
Benjamin, Max (mb388a)4209b112021-01-13 12:37:09 -05001054 <groupId>org.onap.aaf.authz</groupId>
1055 <artifactId>aaf-cadi-client</artifactId>
1056 <version>${aaf.version}</version>
Benjamin, Max (mb388a)dd89e142021-01-28 13:12:40 -05001057 </dependency>
1058 <dependency>
1059 <groupId>org.onap.aaf.authz</groupId>
1060 <artifactId>aaf-cadi-aaf</artifactId>
1061 <version>${aaf.version}</version>
1062 <exclusions>
1063 <exclusion>
1064 <groupId>javax.servlet</groupId>
1065 <artifactId>servlet-api</artifactId>
1066 </exclusion>
1067 <exclusion>
1068 <groupId>log4j</groupId>
1069 <artifactId>log4j</artifactId>
1070 </exclusion>
1071 </exclusions>
1072 </dependency>
1073 <dependency>
1074 <groupId>org.onap.aaf.authz</groupId>
1075 <artifactId>aaf-auth-client</artifactId>
1076 <version>${aaf.version}</version>
1077 <scope>runtime</scope>
1078 </dependency>
1079 <dependency>
1080 <groupId>org.onap.aaf.authz</groupId>
1081 <artifactId>aaf-misc-env</artifactId>
1082 <version>${aaf.version}</version>
1083 <scope>runtime</scope>
1084 </dependency>
1085 <dependency>
1086 <groupId>org.onap.aaf.authz</groupId>
1087 <artifactId>aaf-misc-rosetta</artifactId>
1088 <version>${aaf.version}</version>
1089 <scope>runtime</scope>
1090 </dependency>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04001091 </dependencies>
1092 </dependencyManagement>
1093 <profiles>
1094 <profile>
1095 <id>docker-image-build</id>
1096 <properties>
1097 <docker.skip>false</docker.skip>
1098 <docker.skip.build>false</docker.skip.build>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04001099 </properties>
1100 </profile>
1101 <profile>
1102 <id>docker-image-build-push</id>
1103 <properties>
1104 <docker.skip>false</docker.skip>
1105 <docker.skip.build>false</docker.skip.build>
1106 <docker.skip.push>false</docker.skip.push>
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04001107 </properties>
1108 </profile>
1109 <profile>
1110 <id>format</id>
1111 <properties>
1112 <format.skipValidate>true</format.skipValidate>
1113 <format.skipExecute>false</format.skipExecute>
1114 </properties>
1115 </profile>
1116 <profile>
1117 <id>m2e</id>
1118 <activation>
1119 <property>
1120 <name>m2e.version</name>
1121 </property>
1122 </activation>
1123 <properties>
1124 <originalClassifier />
1125 </properties>
1126 </profile>
1127 </profiles>
Benjamin, Maxa5de2db2020-08-07 11:36:18 -04001128</project>