Browse Source

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

Shay Banon 10 years ago
parent
commit
16c7689355
1 changed files with 6 additions and 0 deletions
  1. 6 0
      pom.xml

+ 6 - 0
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>