Skip to content

Commit d8b4d6e

Browse files
committed
Enforce transitive Kotlin 1.7 dependencies
1 parent fa96b34 commit d8b4d6e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies {
3333
).onEach {
3434
implementation(it) {
3535
version {
36-
strictly("[1.4,1.7)")
36+
strictly("[1.5,1.7)")
3737
prefer("1.6.21")
3838
}
3939
}
@@ -82,8 +82,10 @@ dependencies {
8282
}
8383

8484
val dependencyVersions = listOf(
85-
"org.jetbrains.kotlin:kotlin-stdlib:1.7.0",
8685
"org.jetbrains.kotlin:kotlin-stdlib-common:1.7.0",
86+
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.0",
87+
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.7.0",
88+
"org.jetbrains.kotlin:kotlin-test:1.7.0",
8789
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.2",
8890
"org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.2",
8991
"org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.6.2",

0 commit comments

Comments
 (0)