Re-implement maven shading (#692)

This commit is contained in:
Alexander Meech 2017-01-09 00:36:17 -05:00 committed by Christopher Martin
parent e3f922c062
commit e13e3232c1

13
pom.xml
View file

@ -185,6 +185,19 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration />
</plugin>
</plugins>
</build>