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

Commit 1274f44

Browse files
committed
Fix building with CI
1 parent ac875f7 commit 1274f44

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,5 +129,9 @@ publishing {
129129
tasks.test { useJUnitPlatform() }
130130

131131
tasks.withType<KotlinCompile> { kotlinOptions.jvmTarget = "17" }
132-
132+
kotlin {
133+
jvmToolchain {
134+
languageVersion.set(JavaLanguageVersion.of(17))
135+
}
136+
}
133137
application { mainClass.set("MainKt") }

0 commit comments

Comments
 (0)