diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-02-15 03:39:18 -0800 |
---|---|---|
committer | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-02-15 04:38:13 -0800 |
commit | c6aecd46703503ac2b46b7dbe1781977a96ea5aa (patch) | |
tree | 26cc1ffbd8222ba281ecc324aaccb81cf3a5e090 /pom.xml | |
parent | 2f03e92c297c0f2986eae0683a35b0dbc98781eb (diff) |
Move Nexus URL base to a property
Move the Nexus URL base to a property and fix up all the references to
use the new property. This way it is easier to make sure that all URLs
are referencing the correct Nexus URL
Change-Id: Icabcac4d6b3c968f57678022c0802e394882d826
Signed-off-by: Andrew Grimberg <agrimberg@linuxfoundation.org>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -39,17 +39,18 @@ <!-- this is used for Chef mso-code cookbook --> <swm.version>2.19.3-1</swm.version> <evosuiteVersion>1.0.4-alpha2</evosuiteVersion> + <nexusproxy>https://nexus.openecomp.org</nexusproxy> </properties> <distributionManagement> <repository> <id>ecomp-releases</id> <name>MSO Release Repository</name> - <url>https://nexus.openecomp.org/content/repositories/releases/</url> + <url>${nexusproxy}/content/repositories/releases/</url> </repository> <snapshotRepository> <id>ecomp-snapshots</id> <name>MSO Snapshot Repository</name> - <url>https://nexus.openecomp.org/content/repositories/snapshots/</url> + <url>${nexusproxy}/content/repositories/snapshots/</url> </snapshotRepository> <site> <id>ecomp-javadoc</id> @@ -109,12 +110,12 @@ <repository> <id>ecomp-releases</id> <name>MSO Release Repository</name> - <url>https://nexus.openecomp.org/content/repositories/releases/</url> + <url>${nexusproxy}/content/repositories/releases/</url> </repository> <repository> <id>ecomp-staging</id> <name>MSO Staging Repository</name> - <url>https://nexus.openecomp.org/content/repositories/staging/</url> + <url>${nexusproxy}/content/repositories/staging/</url> </repository> <!-- Camunda Web Repository --> <repository> @@ -162,7 +163,7 @@ <version>1.6.7</version> <extensions>true</extensions> <configuration> - <nexusUrl>http://nexus.openecomp.org/</nexusUrl> + <nexusUrl>${nexusproxy}</nexusUrl> <stagingProfileId>176c31dfe190a</stagingProfileId> <serverId>ecomp-staging</serverId> </configuration> |