summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShay Banon <kimchy@gmail.com>2015-05-01 19:09:35 +0200
committerShay Banon <kimchy@gmail.com>2015-05-01 19:09:35 +0200
commitb2e022bd943e884f85b4de365c9595a6a656b1ed (patch)
tree0288217e00d91d3960bf18516da23aaf76dd871d
parent260f5eb9ff550f370c1f6a1dca1a63644437c284 (diff)
parent16c7689355ecfe3132acd6a03d8a426d8608fbd6 (diff)
Merge pull request #10924 from kimchy/exclude_jackson_ann
Exclude jackson-databind dependency
-rw-r--r--pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index a3611822d9..432aa22744 100644
--- a/pom.xml
+++ b/pom.xml
@@ -267,6 +267,12 @@
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.5.1</version>
<scope>compile</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>