summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSudarshan Kumar <sudars19@in.ibm.com>2019-07-16 16:15:28 +0530
committerSudarshan Kumar <sudars19@in.ibm.com>2019-07-16 16:16:21 +0530
commite38328d2f9013b1bb3da0f9b988b20e2c6221aee (patch)
tree63778706fe82958e1f9e06cb1b0bc38ba3f6f365
parentf384a9bef9f698c4ee698c572114422c588692b3 (diff)
Added Distribution Management in engine pom
Added Distribution Management in engine pom Issue-ID: OPTFRA-527 Change-Id: Ib248e026e478982a84d27eb96d255686f95e768a Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
-rw-r--r--engine/pom.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/engine/pom.xml b/engine/pom.xml
index 4150be0..df0d03a 100644
--- a/engine/pom.xml
+++ b/engine/pom.xml
@@ -25,7 +25,13 @@
</parent>
<properties>
+ <!--nexus -->
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
<onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
+ <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+ <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+ <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
@@ -49,6 +55,42 @@
<name>fgps-engine</name>
<version>0.0.1-SNAPSHOT</version>
<description>Fine Grained Placement Service</description>
+
+ <distributionManagement>
+ <repository>
+ <id>onap-releases</id>
+ <name>ONAP - Release Repository</name>
+ <url>${nexusproxy}${releaseNexusPath}</url>
+ </repository>
+ <snapshotRepository>
+ <id>onap-snapshots</id>
+ <name>ONAP - Snapshot Repository</name>
+ <url>${nexusproxy}${snapshotNexusPath}</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <repositories>
+ <repository>
+ <id>onap-releases</id>
+ <name>ONAP - Release Repository</name>
+ <url>${nexusproxy}${releaseNexusPath}</url>
+ </repository>
+ <repository>
+ <id>onap-staging</id>
+ <name>ONAP - Staging Repository</name>
+ <url>${nexusproxy}${stagingNexusPath}</url>
+ </repository>
+ <repository>
+ <id>onap-snapshots</id>
+ <name>ONAP - Snapshot Repository</name>
+ <url>${nexusproxy}${snapshotNexusPath}</url>
+ </repository>
+ <repository>
+ <id>onap-public</id>
+ <name>ONAP public Repository</name>
+ <url>${nexusproxy}/content/groups/public</url>
+ </repository>
+ </repositories>
<build>
<plugins>