26 lines
321 B
Groovy
26 lines
321 B
Groovy
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'
|
|
}
|