bitcoinj/wallettemplate/build.gradle

32 lines
832 B
Groovy
Raw Normal View History

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')
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'
implementation 'de.jensd:fontawesomefx:8.0.0'
implementation 'com.google.zxing:javase: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'
// task wallet_template can be replaced with the 'run' task
task wallet_template(dependsOn: 'run') {
}