Created
January 31, 2020 15:27
-
-
Save SManAT/bfcb7e80a03898d3c555b1860eb296df to your computer and use it in GitHub Desktop.
Gradle build script JavaFX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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