diff options
author | Daniel Rose <DR695H@list.att.com> | 2017-03-31 14:31:27 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-03-31 14:31:27 +0000 |
commit | 99ca99d3c04f31aea357d5c244b67d6758b47d56 (patch) | |
tree | c4e3ada623eeac8304d08d0ad2322b35cdceb233 /pom.xml | |
parent | 27ffe2e38330040206914b5a2db3de22bfd87d76 (diff) | |
parent | e7a418d03ff183fd3e8fcb5ed878a258765ecef2 (diff) |
Merge "Point Nexus proxy to new URL"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -17,6 +17,14 @@ <module>ecomp-portal-FE</module> <module>ecomp-portal-BE</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> @@ -25,7 +33,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> @@ -40,12 +48,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> |