Skip to content

Commit b35f459

Browse files
authored
Merge pull request shikhar#8 from lumoslabs/mvn_shade_plugin
use maven shade plugin to make uberjars
2 parents 9f85444 + 648951d commit b35f459

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,23 @@
107107
<argLine>-Djava.awt.headless=true</argLine>
108108
</configuration>
109109
</plugin>
110+
111+
<!-- Maven Shade Plugin -->
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-shade-plugin</artifactId>
115+
<version>2.3</version>
116+
<executions>
117+
<!-- Run shade goal on package phase -->
118+
<execution>
119+
<phase>package</phase>
120+
<goals>
121+
<goal>shade</goal>
122+
</goals>
123+
</execution>
124+
</executions>
125+
</plugin>
126+
110127
</plugins>
111128
<resources>
112129
<resource>

0 commit comments

Comments
 (0)