summaryrefslogtreecommitdiffstats
path: root/container-disc
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@oath.com>2017-10-24 10:44:44 +0200
committerBjørn Christian Seime <bjorncs@oath.com>2017-10-24 10:44:44 +0200
commit43ea08a5dd977063f55dfe30ead6b00ea8581ff1 (patch)
tree1dbed0827f258d79ed7f933beb34077bd1434a4d /container-disc
parentc8e3f69ed929b5e5f48176feafa75d4c422147cc (diff)
Exclude unwanted dependencies from athenz-auth-core
Diffstat (limited to 'container-disc')
-rw-r--r--container-disc/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/container-disc/pom.xml b/container-disc/pom.xml
index 5409d9b1a40..b9ce5a1b7ac 100644
--- a/container-disc/pom.xml
+++ b/container-disc/pom.xml
@@ -136,10 +136,25 @@
<artifactId>httpclient</artifactId>
<scope>compile</scope>
</dependency>
+ <!-- TODO Use BouncyCastle directly -->
<dependency>
<groupId>com.yahoo.athenz</groupId>
<artifactId>athenz-auth-core</artifactId>
<version>${athenz.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.amazonaws</groupId>
+ <artifactId>aws-java-sdk-s3</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.kohsuke</groupId>
+ <artifactId>libpam4j</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
<properties>