summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKiran Kamineni <kiran.k.kamineni@intel.com>2018-05-22 14:54:25 -0700
committerKiran Kamineni <kiran.k.kamineni@intel.com>2018-05-22 14:54:58 -0700
commitcd6ef3a93d3dae845ba0333de9caa52c99923e9b (patch)
tree4aab0506c6042e9d834a4f3a0b318fb442fdc44a
parentd65cdb7e7617d5a80134fe6a62be4a7de2e22220 (diff)
Update pom.xml to support daily release target
Update pom.xml to support daily sms-client release to nexus repo Issue-ID: AAF-92 Change-Id: I86c94bf3cd1a74ab910d7fa3336d25aac33b618f Signed-off-by: Kiran Kamineni <kiran.k.kamineni@intel.com>
-rw-r--r--sms-client/java/pom.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/sms-client/java/pom.xml b/sms-client/java/pom.xml
index f178e55..f618277 100644
--- a/sms-client/java/pom.xml
+++ b/sms-client/java/pom.xml
@@ -8,6 +8,11 @@
<name>sms-client</name>
<properties>
+ <nexusproxy>https://nexus.onap.org</nexusproxy>
+ <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
+ <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
+ <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
+ <sitePath>/content/sites/site/org/onap/aaf/sms/${project.artifactId}/${project.version}</sitePath>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
@@ -49,4 +54,22 @@
</plugin>
</plugins>
</build>
+
+ <distributionManagement>
+ <repository>
+ <id>ecomp-releases</id>
+ <name>AAF SMS Release Repository</name>
+ <url>${nexusproxy}${releaseNexusPath}</url>
+ </repository>
+ <snapshotRepository>
+ <id>ecomp-snapshots</id>
+ <name>AAF SMS Snapshot Repository</name>
+ <url>${nexusproxy}${snapshotNexusPath}</url>
+ </snapshotRepository>
+ <site>
+ <id>ecomp-site</id>
+ <url>dav:${nexusproxy}${sitePath}</url>
+ </site>
+ </distributionManagement>
+
</project>