Add dependency management for dmaap service 38/98338/1
authorPatrick Brady <patrick.brady@att.com>
Tue, 12 Nov 2019 23:40:28 +0000 (15:40 -0800)
committerPatrick Brady <patrick.brady@att.com>
Tue, 12 Nov 2019 23:40:32 +0000 (15:40 -0800)
Maven deploy during jenkins build was failing since dmaap event
service did not have repositories defined. This should fix the
problem.

Change-Id: If6ff2178f6ba51084721fbd25b312dc27cb576d5
Signed-off-by: Patrick Brady <patrick.brady@att.com>
Issue-ID: APPC-1744

services/appc-dmaap-service/appc-dmaap-event-service/pom.xml

index aa94e45..5e162d7 100644 (file)
         <artifactId>spring-boot-starter-parent</artifactId>
         <version>2.1.6.RELEASE</version>
     </parent>
+    <distributionManagement>
+        <repository>
+            <id>ecomp-releases</id>
+            <url>https://nexus.onap.org/content/repositories/releases</url>
+        </repository>
+        <snapshotRepository>
+            <id>ecomp-snapshots</id>
+            <url>https://nexus.onap.org/content/repositories/snapshots</url>
+        </snapshotRepository>
+    </distributionManagement>
     <dependencies>
         <dependency>
             <groupId>org.springframework.boot</groupId>