diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2018-02-28 17:12:32 -0800 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2018-02-28 17:12:32 -0800 |
commit | 77367142a5acbe5a8e437394fcb5a58c7de7aa5a (patch) | |
tree | 0f1fba5861296833fb23734298daf459b8be80b6 /veslibrary | |
parent | ee3592fab00d443c0e4c6296ca8bc7b0418874da (diff) |
Fix repositories path name
Remove an extra "/" character
Change-Id: I4f038fe0646c2d7932d8f7b25bec5f07ae2daaff
Issue-ID: VNFSDK-198
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
Diffstat (limited to 'veslibrary')
-rw-r--r-- | veslibrary/ves_javalibrary/evel_javalib2/pom.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/veslibrary/ves_javalibrary/evel_javalib2/pom.xml b/veslibrary/ves_javalibrary/evel_javalib2/pom.xml index 761cd46..a7c9753 100644 --- a/veslibrary/ves_javalibrary/evel_javalib2/pom.xml +++ b/veslibrary/ves_javalibrary/evel_javalib2/pom.xml @@ -15,10 +15,10 @@ <ves.project.version>${project.version}</ves.project.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <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/vnfsdk-ves-agent/${project.version}</sitePath> + <snapshotNexusPath>content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>content/repositories/staging/</stagingNexusPath> + <sitePath>content/sites/site/org/onap/vnfsdk-ves-agent/${project.version}</sitePath> </properties> <repositories> @@ -48,7 +48,7 @@ <!-- added for javadoc --> <site> <id>ecomp-site</id> - <url>dav:${nexusproxy}${sitePath}</url> + <url>dav:${nexusproxy}/${sitePath}</url> </site> </distributionManagement> <build> |