diff options
author | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-13 13:42:42 +0000 |
---|---|---|
committer | sourabh_sourabh <sourabh.sourabh@est.tech> | 2024-11-13 13:46:19 +0000 |
commit | 00da0afbadf37d80b8e17a60880ec5f8d1756b74 (patch) | |
tree | b469c3f87a4bc59ab8349a93aa54c33ae4bf93a1 /cps-parent | |
parent | 1bb3639f4ad0395fd941fc072154838f62bb8193 (diff) |
Fix for cps-master-merge-java job after removing oParent
- Added ecom repo. configuration into cps-aggregator
- Explicitly set onap.nexus.url
Issue-ID: CPS-2496
Change-Id: I010f97ea438bfbaa9cde81ef1a5cc9839b0d1121
Signed-off-by: sourabh_sourabh <sourabh.sourabh@est.tech>
Diffstat (limited to 'cps-parent')
-rw-r--r-- | cps-parent/pom.xml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cps-parent/pom.xml b/cps-parent/pom.xml index ea59fe4d40..12103ed108 100644 --- a/cps-parent/pom.xml +++ b/cps-parent/pom.xml @@ -71,16 +71,23 @@ <sonar.coverage.jacoco.xmlReportPaths> ../jacoco-report/target/site/jacoco-aggregate/jacoco.xml </sonar.coverage.jacoco.xmlReportPaths> + + <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + <nexusproxy>https://nexus.onap.org</nexusproxy> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> </properties> <distributionManagement> <repository> <id>ecomp-releases</id> - <url>${onap.nexus.url}/content/repositories/releases</url> + <name>ECOMP Release Repository</name> + <url>${onap.nexus.url}${releaseNexusPath}</url> </repository> <snapshotRepository> <id>ecomp-snapshots</id> - <url>${onap.nexus.url}/content/repositories/snapshots</url> + <name>ECOMP Snapshot Repository</name> + <url>${onap.nexus.url}${snapshotNexusPath}</url> </snapshotRepository> </distributionManagement> |