aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>2020-04-09 11:55:14 +0200
committerBartosz Gardziejewski <bartosz.gardziejewski@nokia.com>2020-04-09 11:55:18 +0200
commitc41bc9ec829ac6c597614912af79fdd0111e9840 (patch)
tree866be52c780fc12156ac8def82b1c3919521247d /pom.xml
parent3c494af52c476a86ae1389991b464914517774b8 (diff)
Add distribution management in pom
Issue-ID: INT-1517 Signed-off-by: Bartosz Gardziejewski <bartosz.gardziejewski@nokia.com> Change-Id: I7bb906bbf993ee6adce253b356a039f259172669
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 0bd2f23..00eda50 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,6 +40,10 @@
<module>deployment</module>
</modules>
<properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+ <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+ <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
@@ -76,4 +80,23 @@
</plugin>
</plugins>
</build>
+
+
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>AAF Release Repository</name>
+ <url>${nexusproxy}${releaseNexusPath}</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>AAF Snapshot Repository</name>
+ <url>${nexusproxy}${snapshotNexusPath}</url>
+ </snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
+ </distributionManagement>
+
</project>