diff options
Diffstat (limited to 'catalog-model')
-rw-r--r-- | catalog-model/pom.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/catalog-model/pom.xml b/catalog-model/pom.xml index 5c74421893..588396d75f 100644 --- a/catalog-model/pom.xml +++ b/catalog-model/pom.xml @@ -23,6 +23,11 @@ <artifactId>jackson-core</artifactId> <version>${jackson.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + <version>${jackson.version}</version> + </dependency> <!-- Common of SDC --> <dependency> @@ -48,6 +53,10 @@ <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> @@ -82,6 +91,14 @@ <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> @@ -264,6 +281,12 @@ <artifactId>cassandra-driver-core</artifactId> <version>${cassandra.driver.version}</version> <scope>provided</scope> + <exclusions> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.datastax.cassandra</groupId> @@ -423,6 +446,10 @@ <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> <dependency> |