This commit is contained in:
❀ » Cato Sweeney. ❀ » Console@the.bb
2026-09-03 17:14:31 +08:00
parent d013e370e9
commit dec274b1af
2878 changed files with 86019 additions and 17 deletions

View File

@@ -5,7 +5,15 @@ plugins {
}
kotlin {
jvmToolchain(17)
// 本机无 JDK 17 工具链,用当前 JVM21编译统一输出 Java 17 字节码
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
}
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {