aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Forsyth <jf2512@att.com>2019-02-15 16:18:57 -0500
committerJimmy Forsyth <jf2512@att.com>2019-02-15 16:19:02 -0500
commit63fcea5d049451066c6b62c8d19c911d3e5aeb46 (patch)
treef261a33f0c8678e526a3a9fb08050cb688eccfb3
parent58457a8de75959ae07dc09df095d72adc5965a7c (diff)
Added distribution management to pom
Issue-ID: AAI-2158 Change-Id: Iffb5da173658a4b4c47a746ff4d8bb8f51283d51 Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r--pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index d42771d..370e67a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,6 +9,10 @@
<version>1.0-SNAPSHOT</version>
<properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ <site.path>/content/sites/site/org/onap/aai/resources/${project.artifactId}/${project.version}</site.path>
+ <release.path>/content/repositories/releases/</release.path>
+ <snapshot.path>/content/repositories/snapshots/</snapshot.path>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
@@ -96,4 +100,20 @@
</plugins>
</pluginManagement>
</build>
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>ECOMP Release Repository</name>
+ <url>${nexusproxy}${release.path}</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>ECOMP Snapshot Repository</name>
+ <url>${nexusproxy}${snapshot.path}</url>
+ </snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${site.path}</url>
+ </site>
+ </distributionManagement>
</project>