2019-02-23 10:49:00 -08:00
|
|
|
plugins {
|
2019-04-04 13:14:51 -07:00
|
|
|
id 'java'
|
|
|
|
id 'eclipse'
|
|
|
|
id 'application'
|
2020-03-11 11:09:30 -07:00
|
|
|
id 'org.openjfx.javafxplugin' version '0.0.8'
|
2019-02-23 10:49:00 -08:00
|
|
|
}
|
|
|
|
|
2018-03-06 21:13:17 +01:00
|
|
|
dependencies {
|
2019-03-07 17:31:54 +01:00
|
|
|
implementation project(':bitcoinj-core')
|
2018-03-06 21:13:17 +01:00
|
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
2020-04-22 17:50:08 -07:00
|
|
|
implementation 'com.google.zxing:core:3.4.0'
|
2020-01-23 01:16:58 +01:00
|
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.30'
|
2018-03-06 21:13:17 +01:00
|
|
|
}
|
|
|
|
|
2019-02-23 10:49:00 -08:00
|
|
|
javafx {
|
2020-04-22 17:42:32 -07:00
|
|
|
version = '14.0.1'
|
2019-02-23 10:49:00 -08:00
|
|
|
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'
|
2019-07-26 17:11:08 +02:00
|
|
|
javadoc.options.encoding = 'UTF-8'
|
2018-03-06 21:13:17 +01:00
|
|
|
|
2019-02-23 10:49:00 -08:00
|
|
|
mainClassName = 'wallettemplate.Main'
|