From 6ee9db15c48e4dac397f4cdcf3481fde75217a17 Mon Sep 17 00:00:00 2001 From: Lefteris Tsallas <91732999+lefteris-tsallas-leanix@users.noreply.github.com> Date: Wed, 13 Sep 2023 17:00:30 +0300 Subject: [PATCH] INVT-11610: Update snakeyaml to version 2.2 (#74) This one is a derived dependency of spring-boot, and we are already in the latest spring boot version. This is a false positive as stated here https://github.com/spring-projects/spring-boot/issues/33457 and since we are not doing any manual yaml parsing. However, we can update to v2.2 to completely remove the snakeyaml 1.33 from our jars. --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 3ed461b..17b00ef 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -106,3 +106,4 @@ tasks.processResources { file("build/resources/main/gradle.properties").writeText("version=${project.version}") } } +ext["snakeyaml.version"] = "2.2" \ No newline at end of file