JCLOUDS-452: Adding bcpkix to the jclouds-sshj driver. Required by sshj.

Thanks to Andrea Turli and Ignasi Barrera for research and testing!
This commit is contained in:
Andrew Phillips 2014-02-05 09:57:08 +01:00
parent 3de11fa840
commit 3db57e01b0
1 changed files with 13 additions and 0 deletions

View File

@ -91,6 +91,19 @@
<artifactId>sshj</artifactId>
<version>0.8.1</version>
</dependency>
<!-- required by sshj -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.49</version>
<exclusions>
<!-- provided by the jclouds-bouncycastle driver -->
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<profiles>