bitcoinj/wallettemplate/build.gradle
Andreas Schildbach c967c6045c build.gradle: remove sourceCompatibility, targetCompatibility
We have defined `release` one way or another, and on JDK 17 that should
suffice.
2024-08-29 23:07:30 +02:00

36 lines
848 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' ]
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.release = 17
options.compilerArgs << '-Xlint:deprecation'
}
javadoc.options.encoding = 'UTF-8'
mainClassName = 'wallettemplate.Main'
test {
useJUnitPlatform()
}