2021-08-22

This commit is contained in:
2021-08-22 17:22:34 +09:00
parent 6dd1d5bd69
commit a3f4fec8b6
13 changed files with 98 additions and 29 deletions

17
fxml/build.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
plugins {
id("elex-application")
id("org.openjfx.javafxplugin") version "0.0.10"
id("org.beryx.jlink") version "2.23.1"
}
application {
mainClass.set("kr.pe.elex.examples.fxml.FxmlApplication")
mainModule.set("kr.pe.elex.examples.fxml")
}
javafx {
version = "11.0.2"
modules = listOf("javafx.controls", "javafx.fxml")
}
dependencies {
}