aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDaniel Rose <DR695H@list.att.com>2017-03-31 14:29:43 +0000
committerGerrit Code Review <gerrit@onap.org>2017-03-31 14:29:43 +0000
commit28c487b0015d403fc487ce982841a76fc8c156ee (patch)
tree27b84962ad603b9bc66613951dfed78ecc89b4b5 /pom.xml
parentfbf2328487e1c3354ffce7c37419f46e0c6e585c (diff)
parent676374cccaae2d320ffcd63fb8dd08658ed00cca (diff)
Merge "Point Nexus proxy to new URL"
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml13
1 files changed, 10 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 75d0bd8..c54c5cf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,6 +20,13 @@
<module>dcae_dmaapbc_webapp</module>
</modules>
+ <properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+ <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+ <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
+ </properties>
+
<build>
<plugins>
<plugin>
@@ -28,7 +35,7 @@
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
- <nexusUrl>https://nexus.openecomp.org/</nexusUrl>
+ <nexusUrl>${nexusproxy}</nexusUrl>
<stagingProfileId>176c31dfe190a</stagingProfileId>
<serverId>ecomp-staging</serverId>
</configuration>
@@ -43,12 +50,12 @@
<repository>
<id>ecomp-releases</id>
<name>OpenECOMP - Release Repository</name>
- <url>https://nexus.openecomp.org/content/repositories/releases/</url>
+ <url>${nexusproxy}/${releaseNexusPath}</url>
</repository>
<snapshotRepository>
<id>ecomp-snapshots</id>
<name>OpenECOMP - Snapshot Repository</name>
- <url>https://nexus.openecomp.org/content/repositories/snapshots/</url>
+ <url>${nexusproxy}/${snapshotNexusPath}</url>
</snapshotRepository>
</distributionManagement>
</project>