diff options
author | Jimmy Forsyth <jf2512@att.com> | 2018-05-08 13:47:03 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2018-05-08 13:47:07 -0400 |
commit | ef8d501c841c5154d1eb47b1849319c29c98c79e (patch) | |
tree | 7394f86c5f26994e0c21ef5ad7b8647b7f588f66 | |
parent | 2db9e62d2546787e3567a4b0672f863c64223d05 (diff) |
Add maven staging plugin and repo info
Issue-ID: AAI-1127
Change-Id: Iec05802057a66416b5da1c8b4c49e5b98f0a926e
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r-- | pom.xml | 51 |
1 files changed, 50 insertions, 1 deletions
@@ -23,7 +23,56 @@ <skip>true</skip> </configuration> </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> -</project>
\ No newline at end of file + <distributionManagement> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}/content/repositories/releases/</url> + </repository> + <snapshotRepository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}/content/repositories/snapshots/</url> + </snapshotRepository> + </distributionManagement> + + <repositories> + <repository> + <id>central</id> + <name>Maven 2 repository 2</name> + <url>http://repo2.maven.org/maven2/</url> + </repository> + <repository> + <id>ecomp-releases</id> + <name>ECOMP Release Repository</name> + <url>${nexusproxy}/content/repositories/releases/</url> + </repository> + <repository> + <id>ecomp-snapshots</id> + <name>ECOMP Snapshot Repository</name> + <url>${nexusproxy}/content/repositories/snapshots/</url> + </repository> + <repository> + <id>ecomp-staging</id> + <name>ECOMP Staging Repository</name> + <url>${nexusproxy}/content/repositories/staging/</url> + </repository> + + </repositories> + +</project> |