2019-10-30 00:04:15 +01:00
|
|
|
plugins {
|
|
|
|
id 'application'
|
|
|
|
id 'org.openjfx.javafxplugin' version '0.0.8'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
}
|
|
|
|
|
|
|
|
javafx {
|
2020-09-20 02:39:23 +02:00
|
|
|
version = "15"
|
2019-10-30 00:04:15 +01:00
|
|
|
modules = [ 'javafx.controls', 'javafx.fxml', "javafx.swing" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
mainClassName = 'utils.Runner'
|