Skip to content

Instantly share code, notes, and snippets.

@astralbodies
Created March 15, 2012 20:12
Show Gist options
  • Save astralbodies/2046591 to your computer and use it in GitHub Desktop.
Save astralbodies/2046591 to your computer and use it in GitHub Desktop.
Maven shade for uber jar
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment