oai/oai-client/build.gradle

16 lines
369 B
Groovy
Raw Normal View History

2016-11-10 13:30:42 +01:00
dependencies {
api project(':oai-common')
testImplementation libs.marc
testImplementation libs.charactersets
2016-11-10 13:30:42 +01:00
}
def patchArgs = ['--patch-module', "org.xbib.oai.client.test=" + sourceSets.test.resources.sourceDirectories.singleFile]
tasks.named('compileTestJava') {
options.compilerArgs += patchArgs
}
tasks.named('test') {
jvmArgs += patchArgs
}