diff options
author | Edwin Lawrance <Edwin.Lawrance@amdocs.com> | 2017-10-06 10:40:54 +0100 |
---|---|---|
committer | Edwin Lawrance <Edwin.Lawrance@amdocs.com> | 2017-10-06 10:40:54 +0100 |
commit | d9c87883ef5ac7601dbd67372cc4562e139609ed (patch) | |
tree | 8e633abeede6f554286662c546ce02ac6ead5102 /pom.xml | |
parent | ab6eeb146eff31ec3b28076f85d967d342b58b59 (diff) |
Adding distribution management to pom
Change-Id: I00c798498a0c8fd6009a423f80e9977d28d8250a
Issue-Id: AAI-46
Signed-off-by: Edwin Lawrance <Edwin.Lawrance@amdocs.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 19 |
1 files changed, 18 insertions, 1 deletions
@@ -39,7 +39,7 @@ <testRouteOffer>workstation</testRouteOffer> <testEnv>DEV</testEnv> <checkstyle.config.location>google_checks.xml</checkstyle.config.location> - <nexusproxy>https://nexus.onap.org</nexusproxy> + <sitePath>/content/sites/site/org/onap/aai/babel/${project.artifactId}/${project.version}</sitePath> <!-- Dependency Versions --> <aai.artifact.generator.version>1.1.0</aai.artifact.generator.version> @@ -180,6 +180,23 @@ </repository> </repositories> + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${onap.nexus.url}/content/repositories/releases/</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${onap.nexus.url}/content/repositories/snapshots/</url> + </snapshotRepository> + <site> + <id>ecomp-site</id> + <url>dav:${onap.nexus.url}${sitePath}</url> + </site> + </distributionManagement> + <build> <plugins> |