j2s/buildSrc/src/main/kotlin/common-java.gradle.kts
TopchetoEU d563fc4919
All checks were successful
tagged-release / Tagged Release (push) Successful in 5m23s
build: split up into multiple projects, use kotlin DLS
2025-01-10 04:14:40 +02:00

13 lines
196 B
Plaintext

plugins {
id("common");
}
java {
sourceCompatibility = JavaVersion.VERSION_17;
targetCompatibility = JavaVersion.VERSION_17;
toolchain {
languageVersion = JavaLanguageVersion.of(17);
}
}