diff options
Diffstat (limited to 'epsdk-app-onap')
-rwxr-xr-x | epsdk-app-onap/pom.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/epsdk-app-onap/pom.xml b/epsdk-app-onap/pom.xml index 18c032be2..f817f8db6 100755 --- a/epsdk-app-onap/pom.xml +++ b/epsdk-app-onap/pom.xml @@ -31,10 +31,10 @@ <!-- Skip assembling the zip; assemble via mvn -Dskipassembly=false .. --> <skipassembly>true</skipassembly> <nexusproxy>https://nexus.onap.org</nexusproxy> - <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> - <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> - <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> - <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath> + <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>content/repositories/staging/</stagingNexusPath> + <sitePath>content/sites/site/org/onap/vid/${project.version}</sitePath> <!-- SONAR --> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> @@ -48,17 +48,17 @@ <repository> <id>ecomp-releases</id> <name>VID Release Repository</name> - <url>${nexusproxy}${releaseNexusPath}</url> + <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <repository> <id>ecomp-snapshots</id> <name>VID Snapshot Repository</name> - <url>${nexusproxy}${snapshotNexusPath}</url> + <url>${nexusproxy}/${snapshotNexusPath}</url> </repository> <repository> <id>ecomp-staging</id> <name>VID Staging Repository</name> - <url>${nexusproxy}${stagingNexusPath}</url> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> @@ -81,7 +81,7 @@ <!-- added for javadoc --> <site> <id>ecomp-site</id> - <url>dav:${nexusproxy}${sitePath}</url> + <url>dav:${nexusproxy}/${sitePath}</url> </site> </distributionManagement> |