// ── Gemeinsame Konfiguration für alle Subprojekte ─────────────────────────── allprojects { group = 'de.blight' version = '0.1.0' } subprojects { apply plugin: 'java' java { sourceCompatibility = JavaVersion.VERSION_21 targetCompatibility = JavaVersion.VERSION_21 } compileJava.options.encoding = 'UTF-8' repositories { mavenCentral() } }