diff options
author | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-04-25 06:33:51 -0700 |
---|---|---|
committer | Determe, Sebastien (sd378r) <sd378r@intl.att.com> | 2017-04-25 06:35:56 -0700 |
commit | fe041c7b6e0eb1ee9a2445a41ffd6c1e7f3a95dc (patch) | |
tree | 40bd6b1dac5202316d601eab0d9c078e85eb9ac9 /pom.xml | |
parent | b6b7bef8bdcad15af01ac88a038dd763ce59f68f (diff) |
Add a repository to fix maven build
The build was broken due to a snapshot reference, this snapshot
repository is missing
Change-Id: I301c37fc1c3f64dc64752df39d35780a49a88025
Signed-off-by: Determe, Sebastien (sd378r) <sd378r@intl.att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -43,6 +43,7 @@ <nexusproxy>https://nexus.onap.org</nexusproxy> <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> <sitePath>/content/sites/site/org/openecomp/mso/${project.version}</sitePath> <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> </properties> @@ -120,8 +121,13 @@ <repository> <id>ecomp-staging</id> <name>MSO Staging Repository</name> - <url>${nexusproxy}/content/repositories/staging/</url> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> + <repository> + <id>ecomp-snapshots</id> + <name>MSO Snapshot Repository</name> + <url>${nexusproxy}/${snapshotNexusPath}</url> + </repository> <!-- Camunda Web Repository --> <repository> <id>CamundaWebRepo</id> |