mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 06:47:54 +01:00
27 lines
726 B
Groovy
27 lines
726 B
Groovy
plugins {
|
|
id 'org.openjfx.javafxplugin' version '0.0.7' apply false
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'eclipse'
|
|
apply plugin: 'application'
|
|
apply plugin: 'org.openjfx.javafxplugin'
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
implementation 'com.google.guava:guava:27.1-android'
|
|
implementation 'org.fxmisc.easybind:easybind:1.0.3'
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
|
implementation 'com.google.zxing:core:3.3.3'
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.25'
|
|
}
|
|
|
|
javafx {
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
}
|
|
|
|
sourceCompatibility = 1.11
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
|
|
mainClassName = 'wallettemplate.Main'
|