diff options
author | Jimmy Forsyth <jf2512@att.com> | 2017-03-02 16:54:27 -0500 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2017-03-02 16:54:27 -0500 |
commit | 1b7203386e3d89a2e07d8c0020a50bf247884dd0 (patch) | |
tree | 76692a9d2de523411118f15f4f35d5a61aa4fc61 /vid/pom.xml | |
parent | 8a302d3efbc5ce739d567823b1458704e9cc9e91 (diff) |
[OS-144] Fixing repo block
Change-Id: I11ce2a367fed055aac47232e949d2d9042065df7
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
Diffstat (limited to 'vid/pom.xml')
-rw-r--r-- | vid/pom.xml | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/vid/pom.xml b/vid/pom.xml index 32f4d9e7..46e04ade 100644 --- a/vid/pom.xml +++ b/vid/pom.xml @@ -9,7 +9,7 @@ inherit from a parent maven module. --> <groupId>org.openecomp.vid</groupId> <artifactId>vid</artifactId> - <version>1.0.0</version> + <version>1.0.0-SNAPSHOT</version> <packaging>war</packaging> <name>VID Webapp</name> <description>VID Webapp based on the Ecomp SDK</description> @@ -25,19 +25,27 @@ <skiptests>true</skiptests> <!-- this should be commented for local debugging --> <!-- <deployenv>local</deployenv> --> + <nexusproxy>https://nexus.openecomp.org</nexusproxy> + <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath> + <releaseNexusPath>/content/repositories/releases/</releaseNexusPath> + <stagingNexusPath>/content/repositories/staging/</stagingNexusPath> </properties> + <repositories> <repository> - <!-- Snapshots repository has ECOMP snapshot artifacts --> - <id>nexus-snapshots</id> - <name>Nexus Maven Central - Snapshots</name> - <url>https://ecomp-nexus:8443/repository/maven-snapshots/</url> + <id>ecomp-releases</id> + <name>VID Release Repository</name> + <url>${nexusproxy}/${releaseNexusPath}</url> + </repository> + <repository> + <id>ecomp-snapshots</id> + <name>VID Snapshot Repository</name> + <url>${nexusproxy}/${snapshotNexusPath}</url> </repository> <repository> - <!-- Releases repository has ECOMP release artifacts --> - <id>nexus</id> - <name>Nexus Maven Central - Releases</name> - <url>https://ecomp-nexus:8443/repository/maven-releases/</url> + <id>ecomp-staging</id> + <name>VID Staging Repository</name> + <url>${nexusproxy}/${stagingNexusPath}</url> </repository> <repository> <!-- Snapshots repository has ECOMP snapshot artifacts --> @@ -46,6 +54,8 @@ <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url> </repository> </repositories> + + <profiles> <!-- disable doclint, a new feature in Java 8, when generating javadoc --> <profile> @@ -146,9 +156,6 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.5</version> - <configuration> - <skip>true</skip> - </configuration> </plugin> <plugin> <groupId>org.apache.tomcat.maven</groupId> |