From 70e01310119b6a406b66d875a565f869e448df7a Mon Sep 17 00:00:00 2001 From: "pawel.janowski" Date: Fri, 14 Oct 2022 15:43:54 +0200 Subject: [PATCH] 2017 | Upgrade of jackson from 2.7.5 to 2.10.5 --- hystrix-serialization/build.gradle | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/hystrix-serialization/build.gradle b/hystrix-serialization/build.gradle index f20c021ba..6659375e3 100644 --- a/hystrix-serialization/build.gradle +++ b/hystrix-serialization/build.gradle @@ -9,11 +9,10 @@ targetCompatibility = JavaVersion.VERSION_1_6 dependencies { compileApi project(':hystrix-core') - //if we bump into the the 2.8.0 series, we are forced to use Java7 - compileApi 'com.fasterxml.jackson.core:jackson-core:2.7.5' - compileApi 'com.fasterxml.jackson.core:jackson-databind:2.7.5' - compileApi 'com.fasterxml.jackson.core:jackson-annotations:2.7.5' - compile 'com.fasterxml.jackson.module:jackson-module-afterburner:2.7.5' + compileApi 'com.fasterxml.jackson.core:jackson-core:2.10.5' + compileApi 'com.fasterxml.jackson.core:jackson-databind:2.10.5' + compileApi 'com.fasterxml.jackson.core:jackson-annotations:2.10.5' + compile 'com.fasterxml.jackson.module:jackson-module-afterburner:2.10.5' testCompile 'junit:junit-dep:4.10' testCompile 'org.mockito:mockito-all:1.9.5'