37 lines
636 B
Kotlin
37 lines
636 B
Kotlin
/*
|
|
* JavaFx Examples
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
plugins {
|
|
id("elex-application")
|
|
idea
|
|
id("org.openjfx.javafxplugin") version "0.1.0"
|
|
id("org.beryx.jlink") version "3.0.1"
|
|
}
|
|
application {
|
|
mainClass.set("kr.pe.elex.examples.fxml.FxmlApplication")
|
|
mainModule.set("kr.pe.elex.examples.fxml")
|
|
}
|
|
javafx {
|
|
version = "23-ea+3"
|
|
modules = listOf("javafx.controls", "javafx.fxml")
|
|
}
|
|
jlink {
|
|
launcher {
|
|
name = project.name
|
|
}
|
|
}
|
|
idea{
|
|
module {
|
|
isDownloadJavadoc=true
|
|
isDownloadSources=true
|
|
}
|
|
}
|
|
dependencies {
|
|
|
|
|
|
}
|