Skip to content

Instantly share code, notes, and snippets.

@SManAT
Created January 31, 2020 15:27
Show Gist options
  • Save SManAT/bfcb7e80a03898d3c555b1860eb296df to your computer and use it in GitHub Desktop.
Save SManAT/bfcb7e80a03898d3c555b1860eb296df to your computer and use it in GitHub Desktop.
Gradle build script JavaFX
//see https://github.com/openjfx/javafx-gradle-plugin
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'org.openjfx:javafx-plugin:0.0.8'
}
}
apply plugin: 'org.openjfx.javafxplugin'
javafx {
version = '11.0.1'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment