diff options
-rw-r--r-- | sdc-workflow-designer-server/pom.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sdc-workflow-designer-server/pom.xml b/sdc-workflow-designer-server/pom.xml index 8fa00bfc..8bfed82a 100644 --- a/sdc-workflow-designer-server/pom.xml +++ b/sdc-workflow-designer-server/pom.xml @@ -32,6 +32,7 @@ <jaxrs.consumer.version>5.0</jaxrs.consumer.version> <gson.version>2.2.4</gson.version> <hibernate-validator.version>5.4.2.Final</hibernate-validator.version> + <jackson-databind.version>2.9.2</jackson-databind.version> <junit.version>4.10</junit.version> <velocity.version>1.7</velocity.version> <commons-collections.version>3.2.2</commons-collections.version> @@ -113,9 +114,18 @@ <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> </dependency> <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>${jackson-databind.version}</version> + </dependency> + <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>${hibernate-validator.version}</version> @@ -136,6 +146,10 @@ <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </exclusion> + <exclusion> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </exclusion> </exclusions> <version>${swagger.version}</version> </dependency> |