Skip to content

Instantly share code, notes, and snippets.

@kelapure
Last active February 24, 2019 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kelapure/64154b52d6b2f1ca9b98ee196d16e882 to your computer and use it in GitHub Desktop.
Save kelapure/64154b52d6b2f1ca9b98ee196d16e882 to your computer and use it in GitHub Desktop.
bouncy-castle
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<id>copy</id>
<phase>package</phase>
<goals>
<goal>copy</goal>
</goals>
</execution>
</executions>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.60</version>
<overWrite>true</overWrite>
<outputDirectory>src/main/resources</outputDirectory>
<includes>**/*</includes>
</artifactItem>
</artifactItems>
</configuration>
</plugin>
<manifestEntries>
<Main-Class>io.pivotal.snap.SnapAnalysisApplication</Main-Class>
<Class-Path>. ./bcprov-jdk15on-1.60.jar</Class-Path>
</manifestEntries>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment