diff options
author | Daniel Rose <DR695H@list.att.com> | 2017-03-31 14:31:40 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-03-31 14:31:40 +0000 |
commit | f5d39606e5e57594e0fbd28b16992a4754ed2bde (patch) | |
tree | 896658bdcdf482ba225f03836262851f622b36ff /ecomp-sdk/sdk-app/pom.xml | |
parent | 06bb67f2bea31980978fb278565a4a88eed96b96 (diff) | |
parent | 1debcf42e6b6cd337ea9baadf8310a97b7e9d905 (diff) |
Merge "Point Nexus proxy to new URL"
Diffstat (limited to 'ecomp-sdk/sdk-app/pom.xml')
-rw-r--r-- | ecomp-sdk/sdk-app/pom.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/ecomp-sdk/sdk-app/pom.xml b/ecomp-sdk/sdk-app/pom.xml index 8ee52126..c2192c11 100644 --- a/ecomp-sdk/sdk-app/pom.xml +++ b/ecomp-sdk/sdk-app/pom.xml @@ -30,6 +30,10 @@ <!-- Tests usually require some setup that maven cannot do, so skip. --> <skiptests>true</skiptests> <sonar.exclusions>**.js</sonar.exclusions> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> </properties> <reporting> <plugins> @@ -62,19 +66,19 @@ <!-- Releases repository has ECOMP release artifacts --> <id>ecomp-releases</id> <name>OpenECOMP - Release Repository</name> - <url>https://nexus.openecomp.org/content/repositories/releases/</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> <id>ecomp-snapshots</id> <name>OpenECOMP - Snapshot Repository</name> - <url>https://nexus.openecomp.org/content/repositories/snapshots/</url> + <url>${nexusproxy}/${snapshotNexusPath}</url> </repository> <repository> <!-- Staging repository has ECOMP staging artifacts --> <id>ecomp-staging</id> <name>OpenECOMP - Staging Repository</name> - <url>https://nexus.openecomp.org/content/repositories/staging/</url> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> |