Add dist management to pom 21/47921/2
authorPatrick Brady <pb071s@att.com>
Wed, 16 May 2018 21:50:14 +0000 (14:50 -0700)
committerPatrick Brady <pb071s@att.com>
Wed, 16 May 2018 21:51:41 +0000 (14:51 -0700)
Change-Id: I7e0c18c7e0875af106ee95e540e17b9ba961177f
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-905

CdtProxyService/pom.xml

index 107f5fa..52fb9b8 100644 (file)
         <java.version>1.8</java.version>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <start-class>org.onap.appc.cdt.service.MainApplication</start-class>
+        <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
     </properties>
+    
+    <!-- ================================================================================== -->
+    <!-- Distribution Management Sites -->
+    <!-- ================================================================================== -->
+    <distributionManagement>        
+        <repository>
+            <id>ecomp-releases</id>
+            <name>openecomp-repository-releases</name>
+            <url>${onap.nexus.url}/content/repositories/releases</url>
+        </repository>
+        <snapshotRepository>
+            <id>ecomp-snapshots</id>
+            <name>openecomp-repository-snapshots</name>
+            <url>${onap.nexus.url}/content/repositories/snapshots</url>
+        </snapshotRepository>
+    </distributionManagement>
+    
     <!-- Inherit defaults from Spring Boot -->
     <parent>
         <groupId>org.springframework.boot</groupId>