3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00
altcoinj/wallettemplate/build.gradle
2019-02-15 03:34:11 +01:00

23 lines
637 B
Groovy

apply plugin: 'java'
apply plugin: 'eclipse'
eclipse.project.name = 'bitcoinj-wallettemplate'
dependencies {
implementation project(':core')
implementation 'com.google.guava:guava:27.0.1-android'
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
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
task wallet_template(type: JavaExec) {
main = 'wallettemplate.Main'
classpath = sourceSets.main.runtimeClasspath
}