diff options
author | Anaël Closson <ac2550@intl.att.com> | 2017-04-12 11:09:25 +0200 |
---|---|---|
committer | Anaël Closson <ac2550@intl.att.com> | 2017-04-12 13:08:31 +0200 |
commit | 8f7e5de17521836a96fa1c771a1651f63216675c (patch) | |
tree | 5b6b9da826378274087b578717effa7682900eac | |
parent | b67f417a751a98c4119ab4e8c2267e94c495a5de (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: I573ac8a05b380801b8c6034097ce1e9af18d811c
Signed-off-by: Anaël Closson <ac2550@intl.att.com>
-rw-r--r-- | pom.xml | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -46,7 +46,10 @@ <sonar.jacoco.itReportPath>/opt/app/jacoco-it.exec</sonar.jacoco.itReportPath> <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero> <nexusproxy>https://nexus.onap.org</nexusproxy> - <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> + <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> <modules> @@ -86,12 +89,12 @@ <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> </repositories> @@ -99,12 +102,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> |