aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnaël Closson <ac2550@intl.att.com>2017-04-12 13:41:03 +0200
committerAnaël Closson <ac2550@intl.att.com>2017-04-12 13:41:14 +0200
commit41fdb89b8ccefb8c238454025153f721997852dd (patch)
tree9b1c15b4ca3a94d432df4edb7827e23cd707f8f3
parentd31c526b972307dce1fd6cac152cce62c710fc41 (diff)
Allow push on custom repo
Current configuration doesn't give the possibility to fully change where the artifacts should be pushed. This blocks the possibility to push artifacts to a custom repository outside of the LF Change-Id: Ib90791b0e8ca43192a92da6a6a6d55304e839727 Signed-off-by: Anaël Closson <ac2550@intl.att.com>
-rw-r--r--pom.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 87fe251..eba6111 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,12 +9,12 @@
<repository>
<id>ecomp-releases</id>
<name>Open eCOMP Release Repository</name>
- <url>${nexusproxy}/content/repositories/releases/</url>
+ <url>${nexusproxy}/${releases.path}</url>
</repository>
<snapshotRepository>
<id>ecomp-snapshots</id>
<name>Open eCOMP Snapshot Repository</name>
- <url>${nexusproxy}/content/repositories/snapshots/</url>
+ <url>${nexusproxy}/${snapshots.path}</url>
</snapshotRepository>
<site>
<id>ecomp-site</id>
@@ -274,6 +274,8 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jettyVersion>9.0.2.v20130417</jettyVersion>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <snapshots.path>content/repositories/snapshots/</snapshots.path>
+ <releases.path>content/repositories/releases/</releases.path>
</properties>
<description>Data Movement as a Platform (DMaaP) Bus Controller provides an API for other DCAE infrastructure components to provision DMaaP resources. A DMaaP resource is a Data Router Feed or a Message Router Topic, and their associated publishers and subscribers.</description>
</project>