summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2019-02-21 15:43:12 +0100
committerGitHub <noreply@github.com>2019-02-21 15:43:12 +0100
commit6271efca50863d07086302c6ed5a7140b7f441af (patch)
tree551ab5ad2308a88f30e7bfaeabe4097f8c50a0a3
parent81552c6b6014118007449547c21a0aa779c37739 (diff)
parente851314a3f21cb0d67cf98c7300f3f474ac9cd9a (diff)
Merge pull request #8576 from vespa-engine/mortent/exclude-jackson
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>