diff options
author | YuanHu <yuan.hu1@zte.com.cn> | 2018-04-18 10:56:37 +0800 |
---|---|---|
committer | YuanHu <yuan.hu1@zte.com.cn> | 2018-04-18 10:56:37 +0800 |
commit | b8f90542fe172afb8518675aa725fcc4fe4abd0b (patch) | |
tree | 4a42eaab080b678db3e469b8507d0d9a07dce632 /sdc-workflow-designer-server | |
parent | 418a701da50eef5e10f39b3c5b370e6ab1b35d94 (diff) |
Update jackson-databind
Update jackson-databind from 2.9.1 to 2.9.2 for Nexus IQ reason
Issue-ID: SDC-805
Change-Id: Iaff08facb6a933b79ac868a0b2374f202e78bfed
Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
Diffstat (limited to 'sdc-workflow-designer-server')
-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> |