Skip to content

Commit 34f5bbe

Browse files
committed
Prohibit upgrades to Kotlin Serialization 1.7.x
Closes gh-41826
1 parent 9fdaf38 commit 34f5bbe

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

spring-boot-project/spring-boot-dependencies/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,6 +1108,10 @@ bom {
11081108
}
11091109
}
11101110
library("Kotlin Serialization", "1.6.3") {
1111+
prohibit {
1112+
versionRange "[1.7.0-RC,)"
1113+
because "it requires Kotlin 2"
1114+
}
11111115
group("org.jetbrains.kotlinx") {
11121116
imports = [
11131117
"kotlinx-serialization-bom"

0 commit comments

Comments
 (0)