diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-03-29 13:33:00 -0700 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-03-29 13:33:00 -0700 |
commit | 676374cccaae2d320ffcd63fb8dd08658ed00cca (patch) | |
tree | d377ccd0bdba3370115d28051da9244d0b6b7be7 /dcae_dmaapbc_model | |
parent | 2be329fd92937823c18d93b12b551fecbf2a1731 (diff) |
Point Nexus proxy to new URL
The nexus.openecomp.org domain has been deprecated for nexus.onap.org
Change-Id: Iefb68e55fb5e7a4fcc384bac381c8be6a1a34d70
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Diffstat (limited to 'dcae_dmaapbc_model')
-rw-r--r-- | dcae_dmaapbc_model/pom.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dcae_dmaapbc_model/pom.xml b/dcae_dmaapbc_model/pom.xml index 783a3fb..7ce9fea 100644 --- a/dcae_dmaapbc_model/pom.xml +++ b/dcae_dmaapbc_model/pom.xml @@ -16,6 +16,10 @@ <properties> <encoding>UTF-8</encoding> <skiptests>true</skiptests> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> </properties> <profiles> @@ -48,7 +52,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> @@ -113,12 +117,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> |