JGUN/examples/chat/build.gradle
2023-12-12 00:55:22 +03:00

19 lines
314 B
Groovy

plugins {
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
repositories {
mavenCentral()
}
dependencies {
implementation rootProject
}
javafx {
version = "11"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
mainClassName = 'io.github.chronosxyz.JGUN.examples.chat.Main'