mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
22 lines
428 B
Groovy
22 lines
428 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api project(':bitcoinj-core')
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs.addAll(['--release', '9'])
|
|
options.compilerArgs << '-Xlint:deprecation'
|
|
options.encoding = 'UTF-8'
|
|
}
|
|
|
|
ext.moduleName = 'org.bitcoinj.test-support'
|
|
|
|
jar {
|
|
inputs.property("moduleName", moduleName)
|
|
manifest {
|
|
attributes 'Automatic-Module-Name': moduleName
|
|
}
|
|
}
|