mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
23 lines
522 B
Groovy
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'
|