Skip to content

Commit 28948f7

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 0434837 + dab3b43 commit 28948f7

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

build.gradle.kts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,9 @@ repositories {
8484
val javadocJar by tasks.registering(Jar::class) { archiveClassifier = "javadoc" }
8585

8686
kotlin {
87-
jvm()
87+
jvm { compilerOptions.jvmTarget = JvmTarget.JVM_21 }
8888
js(IR) {
89-
browser {
90-
testTask {
91-
enabled = false
92-
}
93-
}
89+
browser { testTask { enabled = false } }
9490
binaries.executable()
9591
}
9692

@@ -259,10 +255,6 @@ data class TestDuration(val name: String, val duration: Duration) {
259255
val testDurations = mutableListOf<TestDuration>()
260256

261257
tasks {
262-
withType<KotlinCompile> {
263-
compilerOptions.jvmTarget = JvmTarget.JVM_21
264-
}
265-
266258
withType<Test> {
267259
minHeapSize = "1g"
268260
maxHeapSize = "6g"

0 commit comments

Comments
 (0)