aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2017-02-15 14:02:44 -0500
committerPamela Dragosh <pdragosh@research.att.com>2017-02-15 14:04:00 -0500
commitcae3ccd97c9818d2db49d2a8bb553229aabde997 (patch)
tree8ae3db6485e530099cc42dae169da2fcb22417c4
parenta974aa0cfb827476104c140096de676711d2b673 (diff)
Added distribution configuration.
Change-Id: I26dacd01e863288d4d2675e183fad08575264ee5 Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
-rw-r--r--pom.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index f9a59db7..a47caf94 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,6 +35,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <nexusproxy>https://nexus.openecomp.org</nexusproxy>
</properties>
@@ -51,7 +52,34 @@
<name>Maven 2 repository</name>
<url>http://repo2.maven.org/maven2/</url>
</repository>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>OpenECOMP Release Repository</name>
+ <url>${nexusproxy}/content/repositories/releases/</url>
+ </repository>
+ <repository>
+ <id>ecomp-staging</id>
+ <name>OpenECOMP Staging Repository</name>
+ <url>${nexusproxy}/content/repositories/staging/</url>
+ </repository>
</repositories>
+
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>OpenECOMP Release Repository</name>
+ <url>${nexusproxy}/content/repositories/releases/</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>OpenECOMP Snapshot Repository</name>
+ <url>${nexusproxy}/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ <site>
+ <id>ecomp-javadoc</id>
+ <url>dav:https://ecomp-nexus:8443/repository/mso-javadoc/${project.version}</url>
+ </site>
+ </distributionManagement>
<build>
<plugins>