bitcoinj/examples/build.gradle
2025-03-11 12:21:09 -05:00

23 lines
522 B
Groovy

plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.14'
}
javafx {
version = '17'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
implementation project(':bitcoinj-core')
implementation 'info.picocli:picocli:4.7.6'
implementation 'org.slf4j:slf4j-jdk14:2.0.16'
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.compilerArgs.addAll(['--release', '17'])
options.compilerArgs << '-Xlint:deprecation'
}
javadoc.options.encoding = 'UTF-8'