mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 01:40:26 +01:00
30 lines
664 B
Groovy
30 lines
664 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'eclipse'
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.0.8'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
implementation 'de.jensd:fontawesomefx:8.0.0'
|
|
implementation 'com.google.zxing:core:3.4.1'
|
|
implementation 'org.slf4j:slf4j-jdk14:1.7.36'
|
|
}
|
|
|
|
javafx {
|
|
version = '17.0.2'
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
}
|
|
|
|
sourceCompatibility = 11
|
|
compileJava.options.encoding = 'UTF-8'
|
|
compileTestJava.options.encoding = 'UTF-8'
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
compileJava {
|
|
options.compilerArgs.addAll(['--release', '11'])
|
|
}
|
|
|
|
mainClassName = 'wallettemplate.Main'
|