Added distribution configuration. 33/433/1
authorPamela Dragosh <pdragosh@research.att.com>
Wed, 15 Feb 2017 19:02:44 +0000 (14:02 -0500)
committerPamela Dragosh <pdragosh@research.att.com>
Wed, 15 Feb 2017 19:04:00 +0000 (14:04 -0500)
Change-Id: I26dacd01e863288d4d2675e183fad08575264ee5
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
pom.xml

diff --git a/pom.xml b/pom.xml
index f9a59db..a47caf9 100644 (file)
--- 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>
 
 
                        <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>