mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-16 04:05:50 +00:00
34 lines
864 B
Groovy
34 lines
864 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'
|
|
|
|
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'
|
|
}
|
|
|
|
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') {
|
|
}
|