diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2017-05-11 12:42:14 -0700 |
---|---|---|
committer | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2017-05-11 12:44:22 -0700 |
commit | 4a2ebce624de11b109668d25190975a22ae6bf22 (patch) | |
tree | 0c1cb16ab143ca5d75cd02709d650ac10839e29d | |
parent | 4f070a81d0fb89b1e74776aac7366b7d628db0a4 (diff) |
sdnc/plugins: Fixing site path for nexus
pom.xml specifies the wrong site url where the site:stage-deploy
needs to happen.
The site path in nexus to post to should match the repo name.
In this case, "content/sites/site/org/onap/sdnc/plugins/"
Change-Id: Ifdd756a9b288633ea355874fa9c31bbd96adb404
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
-rwxr-xr-x | pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ <distributionManagement> <site> <id>sdnc-javadoc</id> - <url>dav:https://${openecomp.nexus.host}:${openecomp.nexus.port}/repository/sdn-c-javadoc/${project.artifactId}/${project.version}</url> + <url>dav:https://${openecomp.nexus.host}/content/sites/site/org/onap/sdnc/plugins/${project.artifactId}/${project.version}</url> </site> </distributionManagement> |