diff options
author | Forsyth, James (jf2512) <jf2512@att.com> | 2017-02-08 11:16:56 -0500 |
---|---|---|
committer | Forsyth, James (jf2512) <jf2512@att.com> | 2017-02-08 11:27:50 -0500 |
commit | d1a851aaca4b51a00083f2fa825c3d660e87547d (patch) | |
tree | 1f39792ea053aedb85b28e10b7e653a3668cd0f9 | |
parent | ab9f3f111118a9ef5ca9cf302b690128023d6fce (diff) |
[OS-144] Adding repos to the asdcclient pom file
Change-Id: Ifbaff57fe8c57c09bd57aa58a5f8f4959e384804
Signed-off-by: Forsyth, James (jf2512) <jf2512@att.com>
-rw-r--r-- | pom.xml | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -11,8 +11,34 @@ <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <nexus.host>ecomp-nexus</nexus.host> + <nexus.port>8443</nexus.port> + <nexus.proto>https</nexus.proto> + <build.version>1.0.0</build.version> </properties> + <repositories> + <repository> + <!-- 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> + </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> + </repository> + <repository> + <!-- Snapshots repository has ECOMP snapshot artifacts --> + <id>oss-snapshots</id> + <name>oss Central - Snapshots</name> + <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> + </repository> + </repositories> + + <dependencies> <dependency> <groupId>org.codehaus.jackson</groupId> |