2021-08-15
This commit is contained in:
25
java-fx/build.gradle.kts
Normal file
25
java-fx/build.gradle.kts
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* Examples for Java
|
||||
*
|
||||
* Copyright (c) 2021. Elex. All Rights Reserved.
|
||||
* https://www.elex-project.com/
|
||||
*/
|
||||
|
||||
plugins {
|
||||
id("elex-java")
|
||||
id("application")
|
||||
id("org.openjfx.javafxplugin") version "0.0.10"
|
||||
id("org.beryx.jlink") version "2.23.1"
|
||||
}
|
||||
application {
|
||||
mainClass.set("kr.pe.elex.examples.FxmlApplication")
|
||||
mainModule.set("kr.pe.elex.examples")
|
||||
}
|
||||
javafx {
|
||||
version = "11.0.2"
|
||||
modules = listOf("javafx.controls", "javafx.fxml")
|
||||
}
|
||||
dependencies {
|
||||
//implementation("org.openjfx:javafx-controls:11.0.2")
|
||||
//implementation("org.openjfx:javafx-fxml:11.0.2")
|
||||
}
|
||||
Reference in New Issue
Block a user