aboutsummaryrefslogtreecommitdiffstats
path: root/client/pom.xml
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@verizonmedia.com>2020-02-06 13:48:40 +0100
committerArnstein Ressem <aressem@verizonmedia.com>2020-02-06 13:48:40 +0100
commit56a30983fbf0386efa2bd00d8269214c65b983fb (patch)
tree45ea2dc00bc9624d60a1c1b177934a1529d264ef /client/pom.xml
parent01e534a73f18514a5e924d2a9d8220272ad37521 (diff)
Produce a fat jar for client module.
Diffstat (limited to 'client/pom.xml')
-rw-r--r--client/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/client/pom.xml b/client/pom.xml
index 3dee66f31ec..6f281fddf8c 100644
--- a/client/pom.xml
+++ b/client/pom.xml
@@ -63,6 +63,21 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-shade-plugin</artifactId>
+ <configuration>
+ <finalName>${project.artifactId}-jar-with-dependencies</finalName>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <goals>
+ <goal>shade</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>