diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-02-20 04:31:22 -0800 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-02-20 05:08:39 -0800 |
commit | d79e716dfd7ba6d9fc0f4a89a9b9bda807f1d3c4 (patch) | |
tree | 73e3e3cb42fd33b44c4de4d5c8824de22ad006d1 /pom.xml | |
parent | a5978fd34dd22c185d1510d046f8c31c9a55ee02 (diff) |
Dynamic and configurable paths for distribution
Add configurable paths for distributionManagement release and snapshot
deploy
Change-Id: I3b823dbb1e48409febd8740d4913cf74778f9455
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -40,17 +40,19 @@ <swm.version>2.19.3-1</swm.version> <evosuiteVersion>1.0.4-alpha2</evosuiteVersion> <nexusproxy>https://nexus.openecomp.org</nexusproxy> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> </properties> <distributionManagement> <repository> <id>ecomp-releases</id> <name>MSO Release Repository</name> - <url>${nexusproxy}/content/repositories/releases/</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <snapshotRepository> <id>ecomp-snapshots</id> <name>MSO Snapshot Repository</name> - <url>${nexusproxy}/content/repositories/snapshots/</url> + <url>${nexusproxy}/${snapshotNexusPath}</url> </snapshotRepository> <site> <id>ecomp-javadoc</id> @@ -110,7 +112,7 @@ <repository> <id>ecomp-releases</id> <name>MSO Release Repository</name> - <url>${nexusproxy}/content/repositories/releases/</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <repository> <id>ecomp-staging</id> |