blob: ad7ebd4a5b2126be2131fab4758726806f728695 [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.aaf.authz</groupId>
29 <artifactId>parent</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040030 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040031 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-service</artifactId>
35 <name>Authz Service</name>
36 <description>API for Authorization and Authentication</description>
37 <url>https://github.com/att/AAF</url>
38 <licenses>
39 <license>
40 <name>BSD License</name>
41 <url> </url>
42 </license>
43 </licenses>
44 <developers>
45 <developer>
46 <name>Jonathan Gathman</name>
47 <email></email>
48 <organization>ATT</organization>
49 <organizationUrl></organizationUrl>
50 </developer>
51 </developers>
52
53 <properties>
sg481nc7499ee2017-09-24 04:05:00 +000054 <maven.build.timestamp.format>yyyy.MM.dd'T'hh.mm.ss'Z'</maven.build.timestamp.format>
sg481nbd890c52017-08-28 12:11:35 -040055 <maven.test.failure.ignore>true</maven.test.failure.ignore>
56 <project.swmVersion>1</project.swmVersion>
sg481na2ac6782017-09-18 16:35:50 -040057 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
58 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481nb0012ae2017-09-24 05:39:19 +000059 <dockerLocation>${basedir}/target/</dockerLocation>
sg481ndc5fcf12017-09-15 13:06:30 -040060 <distFilesRootDirPath>opt/app/aaf/${project.artifactId}/${project.version}</distFilesRootDirPath>
sg481n40cd3562017-09-01 13:12:31 -040061 <sonar.language>java</sonar.language>
62 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
63 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
64 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
65 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
66 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
67 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040068 <nexusproxy>https://nexus.onap.org</nexusproxy>
69 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
70 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
71 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000072 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nc7499ee2017-09-24 04:05:00 +000073 <skip.docker.build>true</skip.docker.build>
74 <skip.docker.push>true</skip.docker.push>
75 <skip.staging.artifacts>false</skip.staging.artifacts>
sg481nbd890c52017-08-28 12:11:35 -040076 </properties>
77
78
79 <dependencies>
80 <dependency>
81 <groupId>org.onap.aaf.authz</groupId>
82 <artifactId>authz-client</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040083 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040084 </dependency>
sg481ndc5fcf12017-09-15 13:06:30 -040085
86 <dependency>
87 <groupId>org.onap.aaf.authz</groupId>
88 <artifactId>authz-cmd</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040089 <version>${project.version}</version>
sg481ndc5fcf12017-09-15 13:06:30 -040090 </dependency>
sg481nbd890c52017-08-28 12:11:35 -040091 <dependency>
92 <groupId>org.onap.aaf.authz</groupId>
93 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040094 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040095 <exclusions>
96 <exclusion>
97 <groupId>javax.servlet</groupId>
98 <artifactId>servlet-api</artifactId>
99 </exclusion>
100 </exclusions>
101 </dependency>
102
103 <dependency>
104 <groupId>org.onap.aaf.authz</groupId>
105 <artifactId>authz-cass</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -0400106 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -0400107 </dependency>
108
109 <dependency>
110 <groupId>org.onap.aaf.authz</groupId>
111 <artifactId>authz-defOrg</artifactId>
112 <version>${project.version}</version>
113 </dependency>
114
115
116
117 <dependency >
118 <groupId>org.onap.aaf.inno</groupId>
119 <artifactId>env</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400120 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400121 </dependency>
122
123
124 <dependency>
125 <groupId>org.onap.aaf.cadi</groupId>
126 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400127 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400128 </dependency>
129
130 <dependency>
131 <groupId>com.att.aft</groupId>
132 <artifactId>dme2</artifactId>
133 </dependency>
134
135 <dependency>
136 <groupId>org.onap.aaf.inno</groupId>
137 <artifactId>rosetta</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400138 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -0400139 </dependency>
140 <dependency>
141 <groupId>org.onap.aaf.cadi</groupId>
142 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -0400143 <version>${project.cadiVersion}</version>
sg481ndc5fcf12017-09-15 13:06:30 -0400144 </dependency>
sg481nbd890c52017-08-28 12:11:35 -0400145 </dependencies>
sg481n2bc35382017-09-23 15:50:15 +0000146
sg481nc7499ee2017-09-24 04:05:00 +0000147
sg481nbd890c52017-08-28 12:11:35 -0400148 <build>
149 <plugins>
sg481nc7499ee2017-09-24 04:05:00 +0000150
sg481na9d21082017-09-23 14:26:06 +0000151
sg481nc7499ee2017-09-24 04:05:00 +0000152<plugin>
153 <groupId>com.spotify</groupId>
154 <artifactId>docker-maven-plugin</artifactId>
155 <version>1.0.0</version>
156 <configuration>
157 <imageName>onap/aaf/authz-service</imageName>
sg481ncd577642017-09-24 21:23:40 +0000158 <!-- <dockerDirectory>${dockerLocation}</dockerDirectory> -->
159 <dockerDirectory>${basedir}/src/main/resources/docker</dockerDirectory>
sg481nc7499ee2017-09-24 04:05:00 +0000160 <imageTags>
161 <imageTag>latest</imageTag>
162 <imageTag>${project.docker.latesttagtimestamp.version}</imageTag>
163 <imageTag>${project.docker.latesttag.version}</imageTag>
164 </imageTags>
165 <forceTags>true</forceTags>
sg481ncd577642017-09-24 21:23:40 +0000166 <!-- <resources>
sg481nc7499ee2017-09-24 04:05:00 +0000167 <resource>
168 <targetPath>/</targetPath>
sg481nb0012ae2017-09-24 05:39:19 +0000169 <directory>${project.build.directory}/opt</directory>
sg481nc7499ee2017-09-24 04:05:00 +0000170 <filtering>true</filtering>
171 <includes>
sg481ncd577642017-09-24 21:23:40 +0000172 <include>**/**</include>
sg481nc7499ee2017-09-24 04:05:00 +0000173 </includes>
174 </resource>
sg481ncd577642017-09-24 21:23:40 +0000175 </resources> -->
176 <resources>
177 <resource>
178 <targetPath>/</targetPath>
179 <directory>${project.build.directory}/opt</directory>
180 <include>${project.build.finalName}.jar</include>
181 </resource>
182 <resource>
183 <targetPath>/</targetPath>
184 <directory>${project.build.directory}</directory>
185 <include>**/**</include>
186 </resource>
187 </resources>
sg481nb0012ae2017-09-24 05:39:19 +0000188 </configuration>
sg481nc7499ee2017-09-24 04:05:00 +0000189 <executions>
sg481ncd577642017-09-24 21:23:40 +0000190 <execution>
sg481n1e538f72017-09-24 02:12:15 +0000191 <id>build-image</id>
192 <phase>package</phase>
193 <goals>
194 <goal>build</goal>
195 </goals>
196 <configuration>
197 <skipDockerBuild>${skip.docker.build}</skipDockerBuild>
sg481n1e538f72017-09-24 02:12:15 +0000198 </configuration>
sg481ncd577642017-09-24 21:23:40 +0000199 </execution>
sg481nc7499ee2017-09-24 04:05:00 +0000200
201 <execution>
202 <id>tag-image-latest-timestamp</id>
203 <phase>package</phase>
204 <goals>
205 <goal>tag</goal>
206 </goals>
207 <configuration>
208 <image>onap/aaf/authz-service</image>
sg481nb0012ae2017-09-24 05:39:19 +0000209 <newName>onap/aaf/authz-service:${project.docker.latesttagtimestamp.version}</newName>
sg481nc7499ee2017-09-24 04:05:00 +0000210 <skipDockerTag>${skip.docker.push}</skipDockerTag>
211 </configuration>
212 </execution>
213 <execution>
214 <id>push-image-latest-timestamp</id>
sg481n1e538f72017-09-24 02:12:15 +0000215 <phase>deploy</phase>
216 <goals>
217 <goal>push</goal>
218 </goals>
219 <configuration>
sg481nb0012ae2017-09-24 05:39:19 +0000220 <imageName>onap/aaf/authz-service:${project.docker.latesttagtimestamp.version}</imageName>
sg481n1e538f72017-09-24 02:12:15 +0000221 <skipDockerPush>${skip.docker.push}</skipDockerPush>
222 </configuration>
223 </execution>
sg481nc7499ee2017-09-24 04:05:00 +0000224 <execution>
225 <id>tag-image-latest</id>
226 <phase>package</phase>
227 <goals>
228 <goal>tag</goal>
229 </goals>
230 <configuration>
231 <image>onap/aaf/authz-service</image>
sg481nb0012ae2017-09-24 05:39:19 +0000232 <newName>onap/aaf/authz-service:${project.docker.latesttag.version}</newName>
sg481nc7499ee2017-09-24 04:05:00 +0000233 <skipDockerTag>${skip.docker.push}</skipDockerTag>
234 </configuration>
235 </execution>
236 <execution>
237 <id>push-image-latest</id>
238 <phase>deploy</phase>
239 <goals>
240 <goal>push</goal>
241 </goals>
242 <configuration>
sg481nb0012ae2017-09-24 05:39:19 +0000243 <imageName>onap/aaf/authz-service:${project.docker.latesttag.version}</imageName>
sg481nc7499ee2017-09-24 04:05:00 +0000244 <skipDockerPush>${skip.docker.push}</skipDockerPush>
245 </configuration>
246 </execution>
247 <execution>
248 <id>tag-image</id>
249 <phase>package</phase>
250 <goals>
251 <goal>tag</goal>
252 </goals>
253 <configuration>
254 <image>onap/aaf/authz-service</image>
sg481nb0012ae2017-09-24 05:39:19 +0000255 <newName>onap/aaf/authz-service:latest</newName>
sg481nc7499ee2017-09-24 04:05:00 +0000256 <skipDockerTag>${skip.docker.push}</skipDockerTag>
257 </configuration>
258 </execution>
259 <execution>
260 <id>push-image</id>
261 <phase>deploy</phase>
262 <goals>
263 <goal>push</goal>
264 </goals>
265 <configuration>
sg481nb0012ae2017-09-24 05:39:19 +0000266 <imageName>onap/aaf/authz-service:latest</imageName>
sg481nc7499ee2017-09-24 04:05:00 +0000267 <skipDockerPush>${skip.docker.push}</skipDockerPush>
268 </configuration>
269 </execution>
270 </executions>
271 </plugin>
272
sg481nb0012ae2017-09-24 05:39:19 +0000273 <plugin>
sg481n1e538f72017-09-24 02:12:15 +0000274 <artifactId>maven-resources-plugin</artifactId>
275 <version>2.7</version>
276 <executions>
sg481nb0012ae2017-09-24 05:39:19 +0000277 <execution>
sg481na9d21082017-09-23 14:26:06 +0000278 <id>copy-docker-file</id>
279 <phase>package</phase>
280 <goals>
281 <goal>copy-resources</goal>
282 </goals>
283 <configuration>
284 <outputDirectory>${dockerLocation}</outputDirectory>
285 <overwrite>true</overwrite>
286 <resources>
287 <resource>
288 <directory>${basedir}/src/main/resources/docker</directory>
289 <filtering>true</filtering>
290 <includes>
291 <include>**/*</include>
292 </includes>
293 </resource>
294 </resources>
295 </configuration>
sg481nb0012ae2017-09-24 05:39:19 +0000296 </execution>
sg481ndc5fcf12017-09-15 13:06:30 -0400297 <execution>
298 <id>copy-resources-1</id>
299 <phase>validate</phase>
300 <goals>
301 <goal>copy-resources</goal>
302 </goals>
303 <configuration>
304 <outputDirectory>${project.build.directory}/opt/dme2reg/</outputDirectory>
305 <resources>
306 <resource>
307 <directory>${project.basedir}/src/main/resources/dme2reg/</directory>
308 <includes>
309 <include>**/*.txt</include>
310 </includes>
311 </resource>
312 </resources>
313 </configuration>
314 </execution>
315 <execution>
316 <id>copy-resources-2</id>
317 <phase>validate</phase>
318 <goals>
319 <goal>copy-resources</goal>
320 </goals>
321 <configuration>
sg481na2ac6782017-09-18 16:35:50 -0400322 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/etc</outputDirectory>
sg481ndc5fcf12017-09-15 13:06:30 -0400323 <resources>
324 <resource>
325 <directory>${project.basedir}/src/main/resources/etc</directory>
326 <includes>
327 <include>**/**</include>
328 </includes>
329 </resource>
330 </resources>
331 </configuration>
332 </execution>
333
334 <execution>
335 <id>copy-resources-3</id>
336 <phase>validate</phase>
337 <goals>
338 <goal>copy-resources</goal>
339 </goals>
340 <configuration>
sg481na2ac6782017-09-18 16:35:50 -0400341 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/lib</outputDirectory>
sg481ndc5fcf12017-09-15 13:06:30 -0400342 <resources>
343 <resource>
344 <directory>${project.basedir}/../authz-cmd/target</directory>
345 <includes>
sg481na2ac6782017-09-18 16:35:50 -0400346 <include>**/*.jar</include>
sg481ndc5fcf12017-09-15 13:06:30 -0400347 </includes>
348 </resource>
349 </resources>
350 </configuration>
351 </execution>
352 <execution>
353 <id>copy-resources-4</id>
354 <phase>validate</phase>
355 <goals>
356 <goal>copy-resources</goal>
357 </goals>
358 <configuration>
sg481na2ac6782017-09-18 16:35:50 -0400359 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/</outputDirectory>
sg481ndc5fcf12017-09-15 13:06:30 -0400360 <resources>
361 <resource>
362 <directory>${project.basedir}/../authz-cmd</directory>
363 <includes>
364 <include>**/aafcli.sh</include>
365 </includes>
366 </resource>
367 </resources>
368 </configuration>
369 </execution>
sg481na2ac6782017-09-18 16:35:50 -0400370 <execution>
sg481ndc5fcf12017-09-15 13:06:30 -0400371 <id>copy-resources-5</id>
372 <phase>validate</phase>
373 <goals>
374 <goal>copy-resources</goal>
375 </goals>
376 <configuration>
sg481na2ac6782017-09-18 16:35:50 -0400377 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/etc/</outputDirectory>
sg481ndc5fcf12017-09-15 13:06:30 -0400378 <resources>
379 <resource>
sg481na2ac6782017-09-18 16:35:50 -0400380 <directory>${project.basedir}/src/main/config</directory>
sg481ndc5fcf12017-09-15 13:06:30 -0400381 <includes>
382 <include>**/**</include>
383 </includes>
384 </resource>
385 </resources>
386 </configuration>
387 </execution>
sg481na2ac6782017-09-18 16:35:50 -0400388 <execution>
389 <id>copy-resources-6</id>
390 <phase>validate</phase>
391 <goals>
392 <goal>copy-resources</goal>
393 </goals>
394 <configuration>
395 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/etc/data</outputDirectory>
396 <resources>
397 <resource>
398 <directory>${project.basedir}/../opt/app/aaf/data</directory>
399 <includes>
400 <include>**/**</include>
401 </includes>
402 </resource>
403 </resources>
404 </configuration>
405 </execution>
sg481ndc5fcf12017-09-15 13:06:30 -0400406 </executions>
407 </plugin>
408 <plugin>
409 <groupId>org.apache.maven.plugins</groupId>
410 <artifactId>maven-dependency-plugin</artifactId>
411 <version>2.10</version>
412 <executions>
413 <execution>
414 <id>copy-dependencies</id>
415 <phase>package</phase>
416 <goals>
417 <goal>copy-dependencies</goal>
418 </goals>
419 <configuration>
sg481na2ac6782017-09-18 16:35:50 -0400420 <outputDirectory>${project.build.directory}/opt/app/aaf/authz-service/lib</outputDirectory>
sg481ndc5fcf12017-09-15 13:06:30 -0400421 <overWriteReleases>false</overWriteReleases>
422 <overWriteSnapshots>false</overWriteSnapshots>
423 <overWriteIfNewer>true</overWriteIfNewer>
424 </configuration>
425 </execution>
426 </executions>
427 </plugin>
428
sg481nbd890c52017-08-28 12:11:35 -0400429 <plugin>
430 <groupId>org.codehaus.mojo</groupId>
431 <artifactId>exec-maven-plugin</artifactId>
432 <version>1.5.0</version>
433 <configuration>
434 <executable>java</executable>
435 <arguments>
436 <argument>-DAFT_LATITUDE=33</argument>
437 <argument>-DAFT_LONGITUDE=-84</argument>
438 <argument>-DAFT_ENVIRONMENT=AFTUAT</argument>
439
440 <argument>-XX:NewRatio=3</argument>
441 <argument>-XX:+PrintGCTimeStamps</argument>
442 <argument>-XX:+PrintGCDetails</argument>
443 <argument>-Xloggc:gc.log</argument>
444 <argument>-classpath</argument>
445
446 <classpath>
447
448 </classpath>
449 <argument>org.onap.aaf.authz.service.AuthAPI</argument>
450
451 <argument>service=org.onap.aaf.authz.AuthorizationService/version=2.0/envContext=DEV/routeOffer=Dev</argument>
452 </arguments>
453 </configuration>
454 </plugin>
455
456 <plugin>
457 <groupId>org.apache.maven.plugins</groupId>
458 <artifactId>maven-jar-plugin</artifactId>
459 <configuration>
460 <excludes>
461 <exclude>*.properties</exclude>
462 </excludes>
463 </configuration>
464 <version>2.3.1</version>
465 </plugin>
sg481na2ac6782017-09-18 16:35:50 -0400466
sg481nbd890c52017-08-28 12:11:35 -0400467
468 <plugin>
469 <groupId>org.apache.maven.plugins</groupId>
470 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000471 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400472 <configuration>
473 <failOnError>false</failOnError>
474 </configuration>
475 <executions>
476 <execution>
477 <id>attach-javadocs</id>
478 <goals>
479 <goal>jar</goal>
480 </goals>
481 </execution>
482 </executions>
483 </plugin>
484
485
486 <plugin>
487 <groupId>org.apache.maven.plugins</groupId>
488 <artifactId>maven-source-plugin</artifactId>
489 <version>2.2.1</version>
490 <executions>
491 <execution>
492 <id>attach-sources</id>
493 <goals>
494 <goal>jar-no-fork</goal>
495 </goals>
496 </execution>
497 </executions>
498 </plugin>
499
500<plugin>
501 <groupId>org.sonatype.plugins</groupId>
502 <artifactId>nexus-staging-maven-plugin</artifactId>
503 <version>1.6.7</version>
504 <extensions>true</extensions>
505 <configuration>
506 <nexusUrl>${nexusproxy}</nexusUrl>
507 <stagingProfileId>176c31dfe190a</stagingProfileId>
508 <serverId>ecomp-staging</serverId>
509 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400510 </plugin>
511 <plugin>
512 <groupId>org.jacoco</groupId>
513 <artifactId>jacoco-maven-plugin</artifactId>
514 <version>0.7.7.201606060606</version>
515 <configuration>
516 <dumpOnExit>true</dumpOnExit>
517 <includes>
518 <include>org.onap.aaf.*</include>
519 </includes>
520 </configuration>
521 <executions>
522 <execution>
523 <id>pre-unit-test</id>
524 <goals>
525 <goal>prepare-agent</goal>
526 </goals>
527 <configuration>
528 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
529 <!-- <append>true</append> -->
530 </configuration>
531 </execution>
532 <execution>
533 <id>pre-integration-test</id>
534 <phase>pre-integration-test</phase>
535 <goals>
536 <goal>prepare-agent</goal>
537 </goals>
538 <configuration>
539 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
540 <!-- <append>true</append> -->
541 </configuration>
542 </execution>
543 <execution>
544 <goals>
545 <goal>merge</goal>
546 </goals>
547 <phase>post-integration-test</phase>
548 <configuration>
549 <fileSets>
550 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
551 <directory>${project.build.directory}/coverage-reports</directory>
552 <includes>
553 <include>*.exec</include>
554 </includes>
555 </fileSet>
556 </fileSets>
557 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
558 </configuration>
559 </execution>
560 </executions>
561 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400562
563 </plugins>
564
565 </build>
sg481nc7499ee2017-09-24 04:05:00 +0000566
sg481n2bc35382017-09-23 15:50:15 +0000567
sg481nbd890c52017-08-28 12:11:35 -0400568 <distributionManagement>
569 <repository>
570 <id>ecomp-releases</id>
571 <name>AAF Release Repository</name>
572 <url>${nexusproxy}${releaseNexusPath}</url>
573 </repository>
574 <snapshotRepository>
575 <id>ecomp-snapshots</id>
576 <name>AAF Snapshot Repository</name>
577 <url>${nexusproxy}${snapshotNexusPath}</url>
578 </snapshotRepository>
579 <site>
580 <id>ecomp-site</id>
581 <url>dav:${nexusproxy}${sitePath}</url>
582 </site>
583 </distributionManagement>
sg481nc7499ee2017-09-24 04:05:00 +0000584 <profiles>
585 <profile>
586 <id>docker</id>
587 <properties>
588 <skip.staging.artifacts>true</skip.staging.artifacts>
589 <skip.docker.build>false</skip.docker.build>
590 <skip.docker.tag>false</skip.docker.tag>
591 <skip.docker.push>false</skip.docker.push>
592 </properties>
593 </profile>
594 </profiles>
sg481nbd890c52017-08-28 12:11:35 -0400595</project>