diff options
author | Jimmy Forsyth <jf2512@att.com> | 2019-07-03 14:11:18 -0400 |
---|---|---|
committer | Jimmy Forsyth <jf2512@att.com> | 2019-07-08 17:59:06 -0400 |
commit | a2d2029ce34b72a3e78cb9507382c8a08d01d754 (patch) | |
tree | 654cef8524daf9fc101b9aa34f72dd985b8bf5aa | |
parent | b6d79e1b7b950c5502761031b53bdc0a4fccbb7b (diff) |
Upversion to oparent 2.0.0
Issue-ID: AAI-2491
Change-Id: I8505dd9c29ab15f740ca7aa67e972b6ec2eff3d2
Signed-off-by: Jimmy Forsyth <jf2512@att.com>
-rw-r--r-- | pom.xml | 16 | ||||
-rw-r--r-- | project.clj | 6 |
2 files changed, 8 insertions, 14 deletions
@@ -1,5 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>2.0.0</version> + </parent> <groupId>org.onap.aai</groupId> <artifactId>gallifrey</artifactId> <packaging>jar</packaging> @@ -76,15 +81,8 @@ </executions> </plugin> <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> - <extensions>true</extensions> - <configuration> - <nexusUrl>https://nexus.onap.org</nexusUrl> - <stagingProfileId>176c31dfe190a</stagingProfileId> - <serverId>ecomp-staging</serverId> - </configuration> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> diff --git a/project.clj b/project.clj index f04a7d2..fd8cc17 100644 --- a/project.clj +++ b/project.clj @@ -57,11 +57,7 @@ {:executions ([:execution [:id "copy-dependencies"] [:goals ([:goal "copy-dependencies"])] [:phase "package"]])}] - [org.sonatype.plugins/nexus-staging-maven-plugin "1.6.7" - {:extensions true - :configuration ([:nexusUrl "https://nexus.onap.org"] - [:stagingProfileId "176c31dfe190a"] - [:serverId "ecomp-staging"])}] + [org.apache.maven.plugins/maven-deploy-plugin "3.0.0-M1"] [org.apache.maven.plugins/maven-shade-plugin "3.2.0" {:executions ([:execution [:phase "package"] |