Skip to content

Commit 7eaf6d1

Browse files
committed
Prohibit upgrades to Kotlin Coroutines 1.9
Closes gh-42348
1 parent 9750425 commit 7eaf6d1

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
@@ -1079,6 +1079,10 @@ bom {
10791079
}
10801080
}
10811081
library("Kotlin Coroutines", "1.8.1") {
1082+
prohibit {
1083+
versionRange "[1.9.0,)"
1084+
because "it requires Kotlin 2"
1085+
}
10821086
group("org.jetbrains.kotlinx") {
10831087
imports = [
10841088
"kotlinx-coroutines-bom"

0 commit comments

Comments
 (0)