refactor(build): centralize JVM toolchain configuration in root build.gradle.kts

Removed redundant `jvmToolchain(25)` declarations across module build scripts, as the JVM toolchain is now managed centrally. Added comments for clarity.
This commit is contained in:
2026-01-03 12:52:01 +01:00
parent e8f458d4c5
commit 591f703015
14 changed files with 15 additions and 28 deletions
@@ -17,9 +17,8 @@ plugins {
}
kotlin {
val enableWasm = providers.gradleProperty("enableWasm").orNull == "true"
jvmToolchain(25)
// Toolchain is now handled centrally in the root build.gradle.kts
val enableWasm = providers.gradleProperty("enableWasm").orNull == "true"
// JVM Target für Desktop
jvm {