diff options
author | Dan Timoney <dtimoney@att.com> | 2017-07-21 08:34:58 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2017-07-21 08:34:58 -0400 |
commit | e72db85fc2c97226a1aace287651cc8238c4e3eb (patch) | |
tree | 1be2139993c4786ce497f42c1c81140d2df8f6ef /pom.xml | |
parent | 2a93b9ddf308b6bdd135be182c1b3fa779891840 (diff) |
Fix mvn deploy
Mvn deploy failed due to credentials issue. Seems like distributionManagement section from parent pom was not processed correctly. Copied that section to top level pom.xml
Issue: CCSDK-6
Change-Id: Ib508169bd3cc93ffd82aa0b865cea441b0e30c9b
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'pom.xml')
-rwxr-xr-x | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -36,6 +36,16 @@ <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>onap-repository-releases</name> + <url>${onap.nexus.release-url}</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>onap-repository-snapshots</name> + <url>${onap.nexus.snapshot-url}</url> + </snapshotRepository> <site> <id>ecomp-site</id> <url>dav:https://${onap.nexus.host}/content/sites/site/org/onap/sdnc/core/${project.artifactId}/${project.version}</url> |