diff options
author | Michael Lando <ml636r@att.com> | 2017-11-05 19:59:37 +0200 |
---|---|---|
committer | Michael Lando <ml636r@att.com> | 2017-11-05 19:59:37 +0200 |
commit | ca6aabea71447d643888332a19c6c1b55f1b533b (patch) | |
tree | defd0709b0cb8c006cdd8589abbe928f9fd028f1 | |
parent | 7faeafaaf2ec5ce8ebf21f90e30a68006a7d48b6 (diff) |
fix pom
Change-Id: Iea032323235292e6dc76ec1d2f279ec6fa549488
Issue-Id: SDC-585
Signed-off-by: Michael Lando <ml636r@att.com>
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | pom.xml | 46 |
2 files changed, 39 insertions, 10 deletions
@@ -1 +1,4 @@ target/ + +/.idea/* +/sdc-docker-base.iml @@ -27,7 +27,7 @@ <version>1.6.7</version> <extensions>true</extensions> <configuration> - <nexusUrl>${onap.nexus.url}</nexusUrl> + <nexusUrl>https://nexus.onap.org</nexusUrl> <stagingProfileId>176c31dfe190a</stagingProfileId> <serverId>ecomp-staging</serverId> </configuration> @@ -154,27 +154,53 @@ </plugin> </plugins> </build> - <distributionManagement> - <site> - <id>ecomp-site</id> - <url>dav:${onap.nexus.url}${sitePath}</url> - </site> - </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>${onap.nexus.url}/content/repositories/releases/</url> + <url>https://nexus.onap.org/content/repositories/releases/</url> </repository> <repository> <id>ecomp-snapshots</id> <name>ECOMP Snapshot Repository</name> - <url>${onap.nexus.url}/content/repositories/snapshots/</url> + <url>https://nexus.onap.org/content/repositories/snapshots/</url> </repository> <repository> <id>ecomp-staging</id> <name>ECOMP Staging Repository</name> - <url>${onap.nexus.url}/content/repositories/staging/</url> + <url>https://nexus.onap.org/content/repositories/staging/</url> </repository> </repositories> + <pluginRepositories> + <pluginRepository> + <id>central</id> + <name>Maven 2 repository 2</name> + <url>http://repo2.maven.org/maven2/</url> + </pluginRepository> + <pluginRepository> + <id>ecomp-releases</id> + <name>ONAP Release Repository</name> + <url> + https://nexus.onap.org/content/repositories/releases/ + </url> + </pluginRepository> + <pluginRepository> + <id>ecomp-snapshots</id> + <name>ONAP Snapshot Repository</name> + <url> + https://nexus.onap.org/content/repositories/snapshots/ + </url> + <snapshots> + <enabled>true</enabled> + </snapshots> + <releases> + <enabled>false</enabled> + </releases> + </pluginRepository> + </pluginRepositories> </project> |