mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-11 17:58:01 +01:00
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
25 lines
592 B
Groovy
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'
|