1
0

Finish Java Kompendium book

This commit is contained in:
2025-12-07 12:22:07 +01:00
parent 5eded28b16
commit c95abc31d6
30 changed files with 1400 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
repositories {
mavenCentral()
}
javafx {
version = '21'
modules = ['javafx.controls']
}
dependencies {
runtimeOnly 'org.hsqldb:hsqldb:2.7.4'
}
run {
standardInput = System.in
}
application {
mainClass = 'Hauptfenster'
}