diff options
author | Max Benjamin <max.benjamin@att.com> | 2021-02-19 15:17:30 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-02-19 15:17:30 +0000 |
commit | 01ac4cc7d7b2fc4d527ccae82fb2fd43a8446f76 (patch) | |
tree | 08317f038c6494061fdf06942719c17ec0884aba | |
parent | f8e38b54b043d358114a6752a19b95183522abe9 (diff) | |
parent | ff2967422ae9c186abcb6c93011f8083f5d7ddfd (diff) |
Merge "cleaned up plugin and repository management"
-rw-r--r-- | pom.xml | 34 |
1 files changed, 7 insertions, 27 deletions
@@ -80,15 +80,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> @@ -125,21 +125,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> @@ -148,27 +148,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> @@ -177,7 +163,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> @@ -185,7 +170,6 @@ </snapshots> </repository> <repository> - <!-- TODO: remove from ONAP environemnt --> <id>onap-snapshots</id> <url>https://nexus.onap.org/content/repositories/snapshots/</url> <releases> @@ -216,10 +200,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> |