mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 01:40:26 +01:00
37 lines
873 B
Groovy
37 lines
873 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'application'
|
|
id 'org.openjfx.javafxplugin' version '0.1.0'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
implementation 'de.jensd:fontawesomefx:8.0.13'
|
|
implementation 'com.google.zxing:core:3.5.3'
|
|
implementation 'org.slf4j:slf4j-jdk14:2.0.13'
|
|
implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0'
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.3"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.3"
|
|
}
|
|
|
|
javafx {
|
|
version = '21.0.4'
|
|
modules = [ 'javafx.controls', 'javafx.fxml' ]
|
|
}
|
|
|
|
sourceCompatibility = 17
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
options.release = 17
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
}
|
|
|
|
javadoc.options.encoding = 'UTF-8'
|
|
|
|
mainClassName = 'wallettemplate.Main'
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|