summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorten Tokle <mortent@oath.com>2019-02-21 15:40:38 +0100
committerMorten Tokle <mortent@oath.com>2019-02-21 15:40:38 +0100
commite851314a3f21cb0d67cf98c7300f3f474ac9cd9a (patch)
tree551ab5ad2308a88f30e7bfaeabe4097f8c50a0a3
parent81552c6b6014118007449547c21a0aa779c37739 (diff)
Exclude jackson dependencies from aws sdk
-rw-r--r--vespa-athenz/pom.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/vespa-athenz/pom.xml b/vespa-athenz/pom.xml
index f30aed1af5f..0f23eaed964 100644
--- a/vespa-athenz/pom.xml
+++ b/vespa-athenz/pom.xml
@@ -117,7 +117,21 @@
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
- </dependency>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
</dependencies>
<build>