22 lines
261 B
Groovy
22 lines
261 B
Groovy
plugins {
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.1.0'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
javafx {
|
|
version = "21"
|
|
modules = ['javafx.controls']
|
|
}
|
|
|
|
run {
|
|
standardInput = System.in
|
|
}
|
|
|
|
application {
|
|
mainClass = 'Task1'
|
|
}
|