bitcoinj/examples/build.gradle

24 lines
522 B
Groovy
Raw Normal View History

plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.14'
}
javafx {
version = '17'
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
dependencies {
implementation project(':bitcoinj-core')
2024-05-08 12:52:19 +02:00
implementation 'info.picocli:picocli:4.7.6'
2024-11-19 13:31:24 +01:00
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'