Skip to content
This repository was archived by the owner on Nov 13, 2025. It is now read-only.

Commit c4654bb

Browse files
committed
Require Kotlin 1.6+
1 parent dd48be5 commit c4654bb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

engine/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ dependencies {
6060
).onEach {
6161
implementation(it) {
6262
version {
63-
strictly("[1.4,1.7)")
63+
strictly("[1.6,1.7)")
6464
prefer("1.6.21")
6565
}
6666
}

integrationtest/build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@ dependencies {
4141
listOf(
4242
"org.jetbrains.kotlin:kotlin-reflect",
4343
"org.jetbrains.kotlin:kotlin-stdlib",
44+
"org.jetbrains.kotlin:kotlin-stdlib-jdk7",
4445
"org.jetbrains.kotlin:kotlin-stdlib-jdk8",
4546
"org.jetbrains.kotlin:kotlin-stdlib-common",
4647
"org.jetbrains.kotlin:kotlin-test"
4748
).onEach {
4849
implementation(it) {
4950
version {
50-
strictly("[1.4,1.7)")
51+
strictly("[1.6,1.7)")
5152
prefer("1.6.21")
5253
}
5354
}

0 commit comments

Comments
 (0)