diff options
author | Forsyth, James (jf2512) <jf2512@att.com> | 2017-02-13 14:12:30 -0500 |
---|---|---|
committer | Forsyth, James (jf2512) <jf2512@att.com> | 2017-02-13 14:12:30 -0500 |
commit | 9e9bb981a77a87d707ae0ea52dcc230263f74cda (patch) | |
tree | ba7a0085d7f705577b202667b9132be3254be144 | |
parent | adc2222e45878861bc6269e64a840c7e53a0b2bd (diff) |
[OS-144] Changed nexus URL to use correct path
Change-Id: I784cf9e3d29144832870e32470661c6e9d02e4b1
Signed-off-by: Forsyth, James (jf2512) <jf2512@att.com>
-rw-r--r-- | pom.xml | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -12,7 +12,6 @@ <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <nexus.host>nexus.openecomp.org</nexus.host> - <nexus.port>443</nexus.port> <nexus.proto>https</nexus.proto> <build.version>1.0.2-SNAPSHOT</build.version> </properties> @@ -21,13 +20,13 @@ <!-- Snapshots repository has ECOMP snapshot artifacts --> <id>nexus-snapshots</id> <name>Nexus Maven Central - Snapshots</name> - <url>${nexus.proto}://${nexus.host}:${nexus.port}/repository/maven-snapshots/</url> + <url>${nexus.proto}://${nexus.host}/content/repositories/maven-snapshots/</url> </repository> <repository> <!-- Releases repository has ECOMP release artifacts --> <id>nexus</id> <name>Nexus Maven Central - Releases</name> - <url>${nexus.proto}://${nexus.host}:${nexus.port}/repository/maven-releases/</url> + <url>${nexus.proto}://${nexus.host}/content/repositories/maven-releases/</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> @@ -75,17 +74,17 @@ <repository> <id>vid-releases</id> <name>VID Release Repository</name> - <url>${nexus.proto}://${nexus.host}/repository/maven-releases/</url> + <url>${nexus.proto}://${nexus.host}/content/repositories/maven-releases/</url> </repository> <snapshotRepository> <id>vid-snapshots</id> <name>VID Snapshot Repository</name> - <url>${nexus.proto}://${nexus.host}/repository/maven-snapshots/</url> + <url>${nexus.proto}://${nexus.host}/content/repositories/maven-snapshots/</url> </snapshotRepository> <!-- added for javadoc --> <site> <id>vid-javadoc</id> - <url>dav:${nexus.proto}://${nexus.host}:${nexus.port}/repository/vid-javadoc/${project.version}</url> + <url>dav:${nexus.proto}://${nexus.host}/content/repositories/vid-javadoc/${project.version}</url> </site> </distributionManagement> |