2019-04-04 22:14:51 +02:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
id 'eclipse'
|
|
|
|
}
|
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')
|
2023-07-16 13:01:25 +02:00
|
|
|
implementation 'info.picocli:picocli:4.7.4'
|
2023-03-27 15:25:02 +02:00
|
|
|
implementation 'org.slf4j:slf4j-jdk14:2.0.7'
|
2018-03-06 21:13:17 +01:00
|
|
|
}
|
|
|
|
|
2022-01-02 01:06:00 +01:00
|
|
|
sourceCompatibility = 11
|
2018-10-31 11:12:49 +01:00
|
|
|
compileJava.options.encoding = 'UTF-8'
|
|
|
|
compileTestJava.options.encoding = 'UTF-8'
|
2019-07-26 17:11:08 +02:00
|
|
|
javadoc.options.encoding = 'UTF-8'
|
2021-09-08 21:46:47 +02:00
|
|
|
|
|
|
|
compileJava {
|
2022-01-02 01:06:00 +01:00
|
|
|
options.compilerArgs.addAll(['--release', '11'])
|
2022-04-18 19:42:38 +02:00
|
|
|
options.compilerArgs << '-Xlint:deprecation'
|
2021-09-08 21:46:47 +02:00
|
|
|
}
|