bitcoinj/wallettemplate/build.gradle
Sean Gilligan 6fc45aafe9 build.gradle: update javafxplugin to 0.0.12
Among other things, this version provides support for macOS on M1.
2022-04-12 17:27:50 +02:00

30 lines
665 B
Groovy

plugins {
id 'java'
id 'eclipse'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.12'
}
dependencies {
implementation project(':bitcoinj-core')
implementation 'de.jensd:fontawesomefx:8.0.0'
implementation 'com.google.zxing:core:3.4.1'
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
}
javafx {
version = '17.0.2'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
sourceCompatibility = 11
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
compileJava {
options.compilerArgs.addAll(['--release', '11'])
}
mainClassName = 'wallettemplate.Main'