From a1b35e204bc28b4120005faa1e165c96eb112d69 Mon Sep 17 00:00:00 2001 From: "C.T. Paterson" Date: Thu, 13 Sep 2018 15:38:41 -0400 Subject: New maven plugin to respect naming convention Change-Id: I613c5cb616457169840810893166a73ff13d7802 Issue-ID: AAI-1547 Signed-off-by: C.T. Paterson --- project.clj | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'project.clj') diff --git a/project.clj b/project.clj index 8d0661a..ec8ef18 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject org.onap.aai/chameleon "1.3.0-SNAPSHOT." +(defproject org.onap.aai/chameleon "1.3.0-SNAPSHOT" :name "chameleon" :dependencies [[org.clojure/clojure "1.9.0"] [org.clojure/core.async "0.4.474"] @@ -64,13 +64,10 @@ {:executions ([:execution [:id "copy-dependencies"] [:goals ([:goal "copy-dependencies"])] [:phase "package"]])}] - [org.apache.maven.plugins/maven-assembly-plugin "2.4.1" - {:configuration ([:descriptorRefs [:descriptorRef "jar-with-dependencies"]] - [:archive [:manifest - [:mainClass "chameleon.server"]]]) - :executions ([:execution [:id "assemble"] + [org.apache.maven.plugins/maven-shade-plugin "3.2.0" + {:executions ([:execution [:phase "package"] - [:goals ([:goal "single"])]])}] + [:goals ([:goal "shade"])]])}] [org.sonatype.plugins/nexus-staging-maven-plugin "1.6.7" {:extensions true :configuration ([:nexusUrl "https://nexus.onap.org"] -- cgit 1.2.3-korg