Exclude jackson-databind dependency

the jackson yaml data format pulls in the databind dependency, its important that we exclude it so we won't use any of its classes by mistake
This commit is contained in:
Shay Banon 2015-05-01 19:03:14 +02:00
parent 260f5eb9ff
commit 16c7689355
1 changed files with 6 additions and 0 deletions

View File

@ -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>