summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Grimberg <agrimberg@linuxfoundation.org>2017-03-29 13:05:00 -0700
committerAndrew Grimberg <agrimberg@linuxfoundation.org>2017-03-29 13:05:00 -0700
commit486ab7373193bae711988bacd86e69f24fe169cf (patch)
treed5eb0a9131ba35f585cc90d15f24b4f618ccfc0b
parentebb03106afcd25575b5ec4d17612e4a3e1076f6b (diff)
Point Nexus proxy to new URL
The nexus.openecomp.org domain has been deprecated for nexus.onap.org Change-Id: I0ce8f1bcc176767bfac3b42de467daf88e73e09f Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
-rw-r--r--pom.xml10
1 files changed, 7 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 1e522f9..d80fe9f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,17 +9,21 @@
<description>OpenStack Java SDK</description>
<properties>
<skip.sign>false</skip.sign>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+ <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+ <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
</properties>
<distributionManagement>
<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>
<modules>
@@ -91,7 +95,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>