From 34f5bbe26a9105e22c63b29457ce2c94f4b919cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Mon, 12 Aug 2024 10:19:47 +0200 Subject: [PATCH] Prohibit upgrades to Kotlin Serialization 1.7.x Closes gh-41826 --- spring-boot-project/spring-boot-dependencies/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spring-boot-project/spring-boot-dependencies/build.gradle b/spring-boot-project/spring-boot-dependencies/build.gradle index 477ded002a..f36d54b6f5 100644 --- a/spring-boot-project/spring-boot-dependencies/build.gradle +++ b/spring-boot-project/spring-boot-dependencies/build.gradle @@ -1108,6 +1108,10 @@ bom { } } library("Kotlin Serialization", "1.6.3") { + prohibit { + versionRange "[1.7.0-RC,)" + because "it requires Kotlin 2" + } group("org.jetbrains.kotlinx") { imports = [ "kotlinx-serialization-bom"