bitcoinj/test-support/build.gradle

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
}
}