summaryrefslogtreecommitdiffstats
path: root/athenz-identity-provider-service
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-03-07 16:54:21 +0100
committergjoranv <gv@oath.com>2018-03-07 17:10:18 +0100
commitd8d690817817ff704119bd33630fe48ad3f3e8be (patch)
tree106909211dcb15b1ec2c7bf78709c632e8ff08b4 /athenz-identity-provider-service
parentb51ad76a2c2cd8a36b356f196e470e1cfc5a60e6 (diff)
Use bouncycastle from container-dev.
Diffstat (limited to 'athenz-identity-provider-service')
-rw-r--r--athenz-identity-provider-service/pom.xml20
1 files changed, 9 insertions, 11 deletions
diff --git a/athenz-identity-provider-service/pom.xml b/athenz-identity-provider-service/pom.xml
index 257c1caf447..86d4defa861 100644
--- a/athenz-identity-provider-service/pom.xml
+++ b/athenz-identity-provider-service/pom.xml
@@ -64,25 +64,23 @@
<artifactId>httpcore</artifactId>
</dependency>
<dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcpkix-jdk15on</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
<groupId>com.yahoo.athenz</groupId>
<artifactId>athenz-zts-java-client</artifactId>
<scope>compile</scope>
<exclusions>
+ <!--Exclude all bundles provided by JDisc -->
+ <exclusion>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcpkix-jdk15on</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.bouncycastle</groupId>
+ <artifactId>bcprov-jdk15on</artifactId>
+ </exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
- <!--Exclude all Jackson bundles provided by JDisc -->
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>