Created
May 25, 2017 15:13
-
-
Save danieldbower/28a388b8a838a8e8131d99ec1cf47d00 to your computer and use it in GitHub Desktop.
snippet of pom showing excluding of bouncycastle libs from maven shade / dropwizard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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