bitcoinj/wallettemplate/build.gradle
Sean Gilligan 1e5fa2ed0c wallettemplate: upgrade JavaFX to version 15
JavaFX 15 is now released and is the now the latest supported
version. It supports JDK 11 and later — same as the previous release.

Release notes are here:
https://github.com/openjdk/jfx/blob/jfx15/doc-files/release-notes-15.md#release-notes-for-javafx-15
2020-09-08 15:43:22 -07:00

25 lines
592 B
Groovy

plugins {
id 'java'
id 'eclipse'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.8'
}
dependencies {
implementation project(':bitcoinj-core')
implementation 'de.jensd:fontawesomefx:8.0.0'
implementation 'com.google.zxing:core:3.4.0'
implementation 'org.slf4j:slf4j-jdk14:1.7.30'
}
javafx {
version = '15'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
sourceCompatibility = 1.11
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
mainClassName = 'wallettemplate.Main'