2019-04-04 13:14:51 -07:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
2019-02-14 22:47:54 +01:00
|
|
|
|
2018-03-06 21:13:17 +01:00
|
|
|
dependencies {
|
2019-03-07 17:31:54 +01:00
|
|
|
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'
|
2018-03-06 21:13:17 +01:00
|
|
|
}
|
|
|
|
|
2024-08-29 22:56:59 +02:00
|
|
|
tasks.withType(JavaCompile) {
|
|
|
|
options.encoding = 'UTF-8'
|
2024-08-29 08:42:20 +02:00
|
|
|
options.compilerArgs.addAll(['--release', '17'])
|
2022-04-18 10:42:38 -07:00
|
|
|
options.compilerArgs << '-Xlint:deprecation'
|
2021-09-08 12:46:47 -07:00
|
|
|
}
|
2024-08-29 22:56:59 +02:00
|
|
|
|
|
|
|
javadoc.options.encoding = 'UTF-8'
|