Arbeiten aus dem URlaub

This commit is contained in:
2026-05-19 12:55:05 +02:00
parent b8a0234ad2
commit 4f48834e2c
403 changed files with 23402 additions and 6389 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
// ── 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()
}
}