From 492b64069f9acce87b913a5c886da2447c50b664 Mon Sep 17 00:00:00 2001 From: Bigshan2002 <98102025+Bigshan2002@users.noreply.github.com> Date: Tue, 19 Nov 2024 18:42:35 +0100 Subject: [PATCH] changed jackson verison 2.8.8 -> 2.8.9 --- core/build.gradle | 5 ++--- modules/k3s/build.gradle | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/core/build.gradle b/core/build.gradle index 10368b59f1f..1239e456b32 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -62,9 +62,8 @@ tasks.japicmp { configurations.all { resolutionStrategy { - // use lower Jackson version - force 'com.fasterxml.jackson.core:jackson-databind:2.8.8' - force 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.8.8' + force 'com.fasterxml.jackson.core:jackson-databind:2.8.9' + force 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.8.9' } } diff --git a/modules/k3s/build.gradle b/modules/k3s/build.gradle index 3f795d99743..a105cbc9c09 100644 --- a/modules/k3s/build.gradle +++ b/modules/k3s/build.gradle @@ -6,7 +6,7 @@ dependencies { // https://youtu.be/otCpCn0l4Wo // The core module depends on jackson-databind 2.8.x for backward compatibility. // Any >2.8 version here is not compatible with jackson-databind 2.8.x. - shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.8' + shaded 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.8.9' testImplementation 'io.fabric8:kubernetes-client:6.13.1' testImplementation 'io.kubernetes:client-java:21.0.1-legacy'