diff options
author | Patrick Brady <pb071s@att.com> | 2018-05-16 14:50:14 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2018-05-16 14:51:41 -0700 |
commit | b97a345e0ec324462678e38d4364c80523032bdf (patch) | |
tree | 537ea78fb4b595adb2c1f6745bd62eec8b50baa6 /CdtProxyService | |
parent | 2c5cd4859b7bba4583de23fc49174b13ce90b077 (diff) |
Add dist management to pom
Change-Id: I7e0c18c7e0875af106ee95e540e17b9ba961177f
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-ID: APPC-905
Diffstat (limited to 'CdtProxyService')
-rw-r--r-- | CdtProxyService/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CdtProxyService/pom.xml b/CdtProxyService/pom.xml index 107f5fa..52fb9b8 100644 --- a/CdtProxyService/pom.xml +++ b/CdtProxyService/pom.xml @@ -34,7 +34,25 @@ <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> |