diff options
author | Anaël Closson <ac2550@intl.att.com> | 2017-04-12 11:10:10 +0200 |
---|---|---|
committer | Anaël Closson <ac2550@intl.att.com> | 2017-04-12 13:15:47 +0200 |
commit | 98fe6d84f7df9d5b007dff91f630c94c41529937 (patch) | |
tree | 9e2e6075a80741e40f82bffc66bddd3a116fcbe5 | |
parent | e1dcfc5600388c7c4620d5f16d94627db1c52e2e (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: Ie5b9e7549af508b4e413a10abbf270f59d5679e5
Signed-off-by: Anaël Closson <ac2550@intl.att.com>
-rw-r--r-- | pom.xml | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -33,6 +33,9 @@ <common-modules.version>1.1.0-SNAPSHOT</common-modules.version> <nexusproxy>https://nexus.onap.org</nexusproxy> <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> + <releases.path>content/repositories/releases/</releases.path> + <snapshots.path>content/repositories/snapshots/</snapshots.path> + <staging.path>content/repositories/staging/</staging.path> </properties> @@ -67,17 +70,17 @@ <repository> <id>ecomp-releases</id> <name>OpenECOMP Release Repository</name> - <url>${nexusproxy}/content/repositories/releases/</url> + <url>${nexusproxy}/${releases.path}/</url> </repository> <repository> <id>ecomp-staging</id> <name>OpenECOMP Staging Repository</name> - <url>${nexusproxy}/content/repositories/staging/</url> + <url>${nexusproxy}/${staging.path}</url> </repository> <repository> <id>ecomp-snapshots</id> <name>OpenECOMP Snapshot Repository</name> - <url>${nexusproxy}/content/repositories/snapshots/</url> + <url>${nexusproxy}/${snapshots.path}</url> </repository> </repositories> @@ -85,12 +88,12 @@ <repository> <id>ecomp-releases</id> <name>OpenECOMP Release Repository</name> - <url>${nexusproxy}/content/repositories/releases/</url> + <url>${nexusproxy}/${releases.path}</url> </repository> <snapshotRepository> <id>ecomp-snapshots</id> <name>OpenECOMP Snapshot Repository</name> - <url>${nexusproxy}/content/repositories/snapshots/</url> + <url>${nexusproxy}/${snapshots.path}</url> </snapshotRepository> <site> <id>ecomp-site</id> |