2018-03-06 21:13:17 +01:00
|
|
|
apply plugin: 'java'
|
2019-02-14 22:47:54 +01:00
|
|
|
apply plugin: 'eclipse'
|
|
|
|
|
|
|
|
eclipse.project.name = 'bitcoinj-wallettemplate'
|
2018-03-06 21:13:17 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation project(':core')
|
2018-11-27 13:33:00 +01:00
|
|
|
implementation 'com.google.guava:guava:25.1-android'
|
2018-03-06 21:13:17 +01:00
|
|
|
implementation 'org.fxmisc.easybind:easybind:1.0.2'
|
|
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
|
|
|
implementation 'net.glxn:qrgen:1.3'
|
|
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.25'
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
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
|
|
|
|
|
|
|
task wallet_template(type: JavaExec) {
|
|
|
|
main = 'wallettemplate.Main'
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
}
|