diff options
author | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-11-17 13:46:10 +0100 |
---|---|---|
committer | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-11-17 13:46:10 +0100 |
commit | 24c217c5eda9b5a889067d2f003a54439238bebe (patch) | |
tree | 5c0ebc54bb00bae5cc5b80c5a1df32861546ec18 /cps-bom/pom.xml | |
parent | ccea64d2ae8eed18d4626e5de5e3f79a989dd301 (diff) |
Add distributionManagement
Issue-ID: cps-5
Signed-off-by: Claudio David Gasparini <claudio.gasparini@pantheon.tech>
Change-Id: I7eee9c1c53f8e13c65b9c8daad5c0b2e5139dcda
Diffstat (limited to 'cps-bom/pom.xml')
-rw-r--r-- | cps-bom/pom.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cps-bom/pom.xml b/cps-bom/pom.xml index ae9e806f3c..5b0271a9e9 100644 --- a/cps-bom/pom.xml +++ b/cps-bom/pom.xml @@ -9,6 +9,28 @@ <packaging>pom</packaging> <description>This artifact contains dependencyManagement declarations of all published CPS components.</description> + + <properties> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> + </properties> + + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}${releaseNexusPath}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}${snapshotNexusPath}</url> + </snapshotRepository> + </distributionManagement> + <dependencyManagement> <dependencies> <dependency> |