Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-39473] Switch to bouncycastle-api plugin for bouncycas…
…tle jars (#456)
  • Loading branch information
stephenc authored and magnayn committed Nov 3, 2016
1 parent 07faf89 commit ac1c0ef
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions docker-plugin/pom.xml
Expand Up @@ -28,11 +28,34 @@
</developer>
</developers>

<properties>
<jenkins.version>1.648</jenkins.version>
</properties>

<dependencies>
<dependency>
<dependency>
<!-- TODO remove this once we upgrade baseline Jenkins to 2.16 and bouncycastle-api to 2.16 -->
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.54</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>bouncycastle-api</artifactId>
<!-- TODO update this to 2.16 once we upgrade baseline Jenkins to 2.16 -->
<version>1.648.3</version>
</dependency>
<dependency>
<groupId>com.nirima</groupId>
<artifactId>docker-java-shaded</artifactId>
<version>${project.version}</version>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency>
<groupId>com.google.guava</groupId>
Expand Down

0 comments on commit ac1c0ef

Please sign in to comment.