> <artifactId>mockwebserver</artifactId> > <scope>test</scope> > + <exclusions> > + <exclusion> > + <groupId>org.bouncycastle</groupId> > + <artifactId>bcprov-jdk15on</artifactId> > + </exclusion> > + </exclusions>
It only fails here because it includes some dependencies (the `enterprise` driver) that bring BouncyCastle in. Providers that use the SSHJ driver, such as [digitalocean](https://github.com/jclouds/jclouds-labs/blob/master/digitalocean/pom.xml#L83) also have that exclusion, to avoid conflicts. I don't know if it would be safe to move the exclusion to the `project/pom.xml`... What if no other BounCycastle dependency is present? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/413/files#r13977814
