diff options
author | Steve Smokowski <ss835w@att.com> | 2017-02-20 14:12:16 -0500 |
---|---|---|
committer | Steve Smokowski <ss835w@att.com> | 2017-02-20 14:12:22 -0500 |
commit | efda408f0086d61c3d155945645b1a17a272f328 (patch) | |
tree | fad50b593dd791d6d3a431f41da26a0f1aaf44b4 /pom.xml | |
parent | 1053097292609f8557cf7cd3384bed24164fa8b9 (diff) |
Change to use staging
Change-Id: I41ab1e5cf06ae2fb2af89360acc55eff3115f46b
Signed-off-by: Steve Smokowski <ss835w@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -21,6 +21,7 @@ <properties> <checkstyle.config.location>google_checks.xml</checkstyle.config.location> + <nexusproxy>https://nexus.openecomp.org</nexusproxy> </properties> @@ -128,18 +129,29 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.7</version> + <extensions>true</extensions> + <configuration> + <nexusUrl>${nexusproxy}</nexusUrl> + <stagingProfileId>176c31dfe190a</stagingProfileId> + <serverId>ecomp-staging</serverId> + </configuration> + </plugin> </plugins> </build> <distributionManagement> <repository> <id>ecomp-releases</id> <name>ECOMP Release Repository</name> - <url>https://nexus.openecomp.org/content/repositories/releases/</url> + <url>${nexusproxy}/content/repositories/releases/</url> </repository> <snapshotRepository> <id>ecomp-snapshots</id> <name>ECOMP Snapshot Repository</name> - <url>https://nexus.openecomp.org/content/repositories/snapshots/</url> + <url>${nexusproxy}/content/repositories/snapshots/</url> </snapshotRepository> <site> <id>ecomp-javadoc</id> |