diff options
author | Benjamin, Max <max.benjamin@att.com> | 2021-02-18 15:56:17 -0500 |
---|---|---|
committer | Benjamin, Max (mb388a) <mb388a@att.com> | 2021-02-18 16:34:29 -0500 |
commit | ff2967422ae9c186abcb6c93011f8083f5d7ddfd (patch) | |
tree | f2ddf5e47316546fb6863b5ce2deb73027cf4b1f | |
parent | 708e8a0a2a38d72d274e65794411a3ef1e241069 (diff) |
cleaned up plugin and repository management
cleaned up plugin and repository management sections
Issue-ID: SO-3539
Signed-off-by: AT&T Open Source <g22940@att.com>
Change-Id: Ibc0c582ee4077c4830c5f6cd3c110f9c6038d8db
Signed-off-by: Benjamin, Max (mb388a) <mb388a@att.com>
-rw-r--r-- | pom.xml | 34 |
1 files changed, 7 insertions, 27 deletions
@@ -79,15 +79,15 @@ </properties> <distributionManagement> <repository> - <id>ecomp-releases</id> + <id>onap-releases</id> <url>${nexusproxy}/${releaseNexusPath}</url> </repository> <snapshotRepository> - <id>ecomp-snapshots</id> + <id>onap-snapshots</id> <url>${nexusproxy}/${snapshotNexusPath}</url> </snapshotRepository> <site> - <id>ecomp-site</id> + <id>onap-site</id> <url>dav:${nexusproxy}${siteNexusPath}</url> </site> </distributionManagement> @@ -124,21 +124,21 @@ <url>http://maven.restlet.com</url> </pluginRepository> <pluginRepository> - <id>ecomp-public</id> + <id>onap-public</id> <url>${nexusproxy}/${publicNexusPath}</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> - <id>ecomp-release</id> + <id>onap-release</id> <url>${nexusproxy}/${releaseNexusPath}</url> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository> <pluginRepository> - <id>ecomp-snapshots</id> + <id>onap-snapshots</id> <url>${nexusproxy}/${snapshotNexusPath}</url> <releases> <enabled>false</enabled> @@ -147,27 +147,13 @@ </pluginRepositories> <repositories> <repository> - <id>ecomp-public</id> + <id>onap-public</id> <url>https://nexus.onap.org/content/repositories/public/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> - <id>ecomp-releases</id> - <url>https://nexus.onap.org/content/repositories/releases/</url> - <snapshots> - <enabled>false</enabled> - </snapshots> - </repository> - <repository> - <id>ecomp-snapshots</id> - <url>https://nexus.onap.org/content/repositories/snapshots/</url> - <releases> - <enabled>false</enabled> - </releases> - </repository> - <repository> <id>camunda-bpm</id> <url>https://app.camunda.com/nexus/content/repositories/camunda-bpm/</url> </repository> @@ -176,7 +162,6 @@ <url>https://app.camunda.com/nexus/content/groups/public</url> </repository> <repository> - <!-- TODO: remove from ONAP environemnt --> <id>onap-releases</id> <url>https://nexus.onap.org/content/repositories/releases/</url> <snapshots> @@ -184,7 +169,6 @@ </snapshots> </repository> <repository> - <!-- TODO: remove from ONAP environemnt --> <id>onap-snapshots</id> <url>https://nexus.onap.org/content/repositories/snapshots/</url> <releases> @@ -215,10 +199,6 @@ </resource> </resources> <plugins> - <!-- <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> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> |