diff options
author | MukeshKumar <mukeshsharma@est.tech> | 2021-06-23 15:49:02 +0100 |
---|---|---|
committer | Mukesh <mukeshsharma@est.tech> | 2021-06-23 15:51:33 +0100 |
commit | 0110bb5eb022160aa62f1871235ac4ef2b44e4a1 (patch) | |
tree | 6e17218fe0499385e9a22a4abc9e535e84e8a8ce | |
parent | d2287cfdeb490c5e11fdb5d1ea84986f3d786ac3 (diff) |
so-master-merge-java jenkins failing due the nexus credential mismatch
Issue-ID: SO-3680
Signed-off-by: Mukesh <mukeshsharma@est.tech>
Change-Id: Ia6fd47392a6a4a6eaab34d70a531f3b3b2a88fb2
-rw-r--r-- | pom.xml | 28 |
1 files changed, 21 insertions, 7 deletions
@@ -81,15 +81,15 @@ </properties> <distributionManagement> <repository> - <id>onap-releases</id> + <id>ecomp-releases</id> <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <snapshotRepository> - <id>onap-snapshots</id> + <id>ecomp-snapshots</id> <url>${nexusproxy}/${snapshotNexusPath}</url> </snapshotRepository> <site> - <id>onap-site</id> + <id>ecomp-site</id> <url>dav:${nexusproxy}${siteNexusPath}</url> </site> </distributionManagement> @@ -126,21 +126,21 @@ <url>http://maven.restlet.com</url> </pluginRepository> <pluginRepository> - <id>onap-public</id> + <id>ecomp-public</id> <url>${nexusproxy}/${publicNexusPath}</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> - <id>onap-release</id> + <id>ecomp-release</id> <url>${nexusproxy}/${releaseNexusPath}</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> - <id>onap-snapshots</id> + <id>ecomp-snapshots</id> <url>${nexusproxy}/${snapshotNexusPath}</url> <releases> <enabled>false</enabled> @@ -149,13 +149,27 @@ </pluginRepositories> <repositories> <repository> - <id>onap-public</id> + <id>ecomp-public</id> <url>https://nexus.onap.org/content/repositories/public/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> + <id>ecomp-releases</id> + <url>https://nexus.onap.org/content/repositories/releases/</url> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>ecomp-snapshots</id> + <url>https://nexus.onap.org/content/repositories/snapshots/</url> + <releases> + <enabled>false</enabled> + </releases> + </repository> + <repository> <id>camunda-bpm</id> <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url> </repository> |