9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-21 16:09:26 +00:00
Files
craft-engine/shared/build.gradle.kts
2025-03-13 15:52:31 +08:00

25 lines
392 B
Plaintext

plugins {
id("java-library")
}
repositories {
mavenCentral()
}
dependencies {
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
tasks.withType<JavaCompile> {
options.encoding = "UTF-8"
options.release.set(21)
dependsOn(tasks.clean)
}