Skip to content

Instantly share code, notes, and snippets.

@danieldbower
Created May 25, 2017 15:13
Show Gist options
  • Save danieldbower/28a388b8a838a8e8131d99ec1cf47d00 to your computer and use it in GitHub Desktop.
Save danieldbower/28a388b8a838a8e8131d99ec1cf47d00 to your computer and use it in GitHub Desktop.
snippet of pom showing excluding of bouncycastle libs from maven shade / dropwizard
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.bouncycastle:*</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment