aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee, Tian (tl5884) <TianL@amdocs.com>2019-03-01 17:06:07 +0000
committerLee, Tian (tl5884) <TianL@amdocs.com>2019-03-01 17:22:32 +0000
commit82a366e562c5517a9b66fb647bfb699530e19ca3 (patch)
tree98b3686d19e929ccbc2ffb330c4ead195d2afd10
parente07d5b8dc0801583518b4f27ce6b8f3b56bcf206 (diff)
Add missing distributionManagement section to poms
Change-Id: I85d4c78abda0af32b9994b01f8abceaabe276e18 Issue-ID: AAI-2203 Signed-off-by: Lee, Tian (tl5884) <TianL@amdocs.com>
-rw-r--r--elasticsearch-sg/pom.xml17
-rw-r--r--pom.xml17
2 files changed, 34 insertions, 0 deletions
diff --git a/elasticsearch-sg/pom.xml b/elasticsearch-sg/pom.xml
index cd24333..b3dba83 100644
--- a/elasticsearch-sg/pom.xml
+++ b/elasticsearch-sg/pom.xml
@@ -30,6 +30,10 @@
<version>1.4.0-SNAPSHOT</version>
<packaging>pom</packaging>
+ <properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ </properties>
+
<build>
<plugins>
<plugin>
@@ -78,4 +82,17 @@
</plugins>
</build>
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>ECOMP Release Repository</name>
+ <url>${nexusproxy}/content/repositories/releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>ECOMP Snapshot Repository</name>
+ <url>${nexusproxy}/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
+
</project> \ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 3eb4543..f7c542e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,6 +35,10 @@
<module>elasticsearch-sg</module>
</modules>
+ <properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ </properties>
+
<build>
<plugins>
<plugin>
@@ -48,4 +52,17 @@
</plugins>
</build>
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>ECOMP Release Repository</name>
+ <url>${nexusproxy}/content/repositories/releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>ECOMP Snapshot Repository</name>
+ <url>${nexusproxy}/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
+
</project> \ No newline at end of file