diff options
-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"] |