aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorC.T. Paterson <ctpaterson+onap@gmail.com>2018-09-18 15:37:05 -0400
committerC.T. Paterson <ctpaterson+onap@gmail.com>2018-09-18 15:37:45 -0400
commit3cc9fa954bcb5737a614307126c2ed101ccfbe3e (patch)
tree1f9d4b91c7f5f757154059030f517e6045c9f05d
parent0e3c742bec42615ac1576d07c8fa322512e4c215 (diff)
Reintroduce uberjar build1.3.0
Change-Id: I9b4108caac30b6fbb81e47aa02ba9c694c397a91 Issue-ID: AAI-1547 Signed-off-by: C.T. Paterson <ctpaterson+onap@gmail.com>
-rw-r--r--pom.xml15
-rw-r--r--project.clj4
2 files changed, 18 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 5f12412..f84f2b8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
<name>aai-chameleon</name>
<description/>
<scm>
- <tag>a0aa3d2db20d0afc00b34c5db9fcac3b06299237</tag>
+ <tag>0e3c742bec42615ac1576d07c8fa322512e4c215</tag>
</scm>
<build>
<sourceDirectory>src</sourceDirectory>
@@ -76,6 +76,19 @@
</executions>
</plugin>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <version>3.2.0</version>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
diff --git a/project.clj b/project.clj
index 1c917a2..19cb64c 100644
--- a/project.clj
+++ b/project.clj
@@ -62,6 +62,10 @@
{:executions ([:execution [:id "copy-dependencies"]
[:goals ([:goal "copy-dependencies"])]
[:phase "package"]])}]
+ [org.apache.maven.plugins/maven-shade-plugin "3.2.0"
+ {:executions ([:execution
+ [:phase "package"]
+ [:goals ([:goal "shade"])]])}]
[org.sonatype.plugins/nexus-staging-maven-plugin "1.6.7"
{:extensions true
:configuration ([:nexusUrl "https://nexus.onap.org"]