summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2020-01-30 11:16:25 -0500
committerDan Timoney <dtimoney@att.com>2020-01-30 11:16:25 -0500
commit83b1669c0ec3139557172946f98dab1fd337f028 (patch)
tree1ea326a72a1aa6a3eb89c2a78ca322474232184e
parentb5ea66623c1d6178cfcc325687f03abe81d23575 (diff)
Upgrade oparent version for sonarcloud
Update oparent version to 3.0.0-SNAPSHOT to support sonarcloud migration. Note: also had to add repositories and pluginRepositories tags so that snapshot version of oparent could be used, since version of oparent that supports sonarcloud is not yet released. Change-Id: I9de4320f1fad554bbd6fcc8f7ab3c9975f7929ac Issue-ID: CCSDK-1948 Signed-off-by: Dan Timoney <dtimoney@att.com>
-rw-r--r--pom.xml25
1 files changed, 24 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index ddea89f..e484d52 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@ limitations under the License.
<parent>
<groupId>org.onap.oparent</groupId>
<artifactId>oparent</artifactId>
- <version>2.0.0</version>
+ <version>3.0.0-SNAPSHOT</version>
</parent>
<groupId>org.onap.ccsdk.platform</groupId>
<artifactId>plugins</artifactId>
@@ -54,4 +54,27 @@ limitations under the License.
</snapshotRepository>
</distributionManagement>
+ <repositories>
+ <repository>
+ <id>ecomp-releases</id>
+ <url>https://nexus.onap.org/content/repositories/releases</url>
+ </repository>
+ <repository>
+ <id>ecomp-snapshots</id>
+ <url>https://nexus.onap.org/content/repositories/snapshots</url>
+ </repository>
+ </repositories>
+
+ <pluginRepositories>
+
+ <pluginRepository>
+ <id>ecomp-releases</id>
+ <url>https://nexus.onap.org/content/repositories/releases</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>ecomp-snapshots</id>
+ <url>https://nexus.onap.org/content/repositories/snapshots</url>
+ </pluginRepository>
+ </pluginRepositories>
+
</project>