mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-15 12:20:30 +01:00
20 lines
369 B
Groovy
20 lines
369 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '2.0.21'
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':bitcoinj-core')
|
|
}
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.encoding = 'UTF-8'
|
|
options.release = 17
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
}
|
|
|
|
javadoc.options.encoding = 'UTF-8'
|