bitcoinj/wallettemplate/build.gradle

38 lines
878 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'eclipse'
id 'application'
id 'org.openjfx.javafxplugin' version '0.1.0'
}
dependencies {
implementation project(':bitcoinj-core')
implementation 'de.jensd:fontawesomefx:8.0.0'
2022-11-14 08:11:34 +01:00
implementation 'com.google.zxing:core:3.5.1'
2023-10-15 10:16:24 -07:00
implementation 'org.slf4j:slf4j-jdk14:2.0.9'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.0"
}
javafx {
2023-09-27 11:39:25 -07:00
version = '21'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
sourceCompatibility = 17
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
javadoc.options.encoding = 'UTF-8'
compileJava {
options.compilerArgs.addAll(['--release', '17'])
options.compilerArgs << '-Xlint:deprecation'
}
mainClassName = 'wallettemplate.Main'
test {
useJUnitPlatform()
}