mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-01-18 21:32:35 +01:00
b528fb5180
Starting with SLF4J 2.0.0, we can use the fluent logger API.
31 lines
713 B
Groovy
31 lines
713 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.5.1'
|
|
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
|
}
|
|
|
|
javafx {
|
|
version = '17.0.6'
|
|
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'])
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
}
|
|
|
|
mainClassName = 'wallettemplate.Main'
|