2019-02-23 10:49:00 -08:00
|
|
|
plugins {
|
|
|
|
id 'org.openjfx.javafxplugin' version '0.0.7' apply false
|
|
|
|
}
|
|
|
|
|
2018-03-06 21:13:17 +01:00
|
|
|
apply plugin: 'java'
|
2019-02-14 22:47:54 +01:00
|
|
|
apply plugin: 'eclipse'
|
2019-02-23 10:49:00 -08:00
|
|
|
apply plugin: 'application'
|
|
|
|
apply plugin: 'org.openjfx.javafxplugin'
|
2019-02-14 22:47:54 +01:00
|
|
|
|
2018-03-06 21:13:17 +01:00
|
|
|
dependencies {
|
2019-03-07 17:31:54 +01:00
|
|
|
implementation project(':bitcoinj-core')
|
2019-04-04 13:40:10 -07:00
|
|
|
implementation 'com.google.guava:guava:27.1-android'
|
2019-04-04 13:57:00 -07:00
|
|
|
implementation 'org.fxmisc.easybind:easybind:1.0.3'
|
2018-03-06 21:13:17 +01:00
|
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
2019-04-06 13:25:09 -07:00
|
|
|
implementation 'com.google.zxing:core:3.3.3'
|
2018-03-06 21:13:17 +01:00
|
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.25'
|
|
|
|
}
|
|
|
|
|
2019-02-23 10:49:00 -08:00
|
|
|
javafx {
|
|
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.11
|
2018-10-31 11:12:49 +01:00
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
compileTestJava.options.encoding = 'UTF-8'
|
2018-03-06 21:13:17 +01:00
|
|
|
|
2019-02-23 10:49:00 -08:00
|
|
|
mainClassName = 'wallettemplate.Main'
|