diff options
author | Thomas Nelson Jr (arthurdent3) <tn1381@att.com> | 2018-02-20 11:50:58 -0500 |
---|---|---|
committer | Thomas Nelson Jr (arthurdent3) <tn1381@att.com> | 2018-02-20 11:50:58 -0500 |
commit | 333dea5e330b70aae46e34a49745139014c8107a (patch) | |
tree | 35aa3571a4b34edd8b7c21db299d4ee73c728ed1 /pom.xml | |
parent | d1ffd83133476d04fbd5c8fcf8e3c4634a182ba0 (diff) |
Adding distribution management to pom for docker
Issue-ID: MUSIC-32
Change-Id: If208dadd55fb9fd44dfb29df6d84822a17a36236
Signed-off-by: Thomas Nelson Jr (arthurdent3) <tn1381@att.com>
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -38,6 +38,9 @@ <zookeeper.version>3.4.6</zookeeper.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + + <!--nexus--> + <sitePath>/content/sites/site/org/onap/music/${project.artifactId}/${project.version}</sitePath> <!--maven--> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyy.MM.dd.HH.mm</maven.build.timestamp.format> @@ -346,9 +349,15 @@ </executions> </plugin> </plugins> + </build> </profile> </profiles> - + <distributionManagement> + <site> + <id>ecomp-site</id> + <url>dav:${onap.nexus.url}${sitePath}</url> + </site> + </distributionManagement> </project> |