mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2024-11-19 01:40:26 +01:00
23 lines
428 B
Groovy
23 lines
428 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api project(':bitcoinj-core')
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs.addAll(['--release', '8'])
|
|
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
|
|
}
|
|
}
|