Add chapters 9-17 for the java book
This commit is contained in:
25
Java-Kompendium/kap15/build.gradle
Normal file
25
Java-Kompendium/kap15/build.gradle
Normal 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 = 'Marks'
|
||||
}
|
||||
Reference in New Issue
Block a user