2016-11-10 13:30:42 +01:00
|
|
|
dependencies {
|
2020-05-26 16:12:26 +02:00
|
|
|
api project(':oai-common')
|
2022-10-17 10:39:41 +02:00
|
|
|
testImplementation libs.marc
|
|
|
|
testImplementation libs.charactersets
|
2016-11-10 13:30:42 +01:00
|
|
|
}
|
2024-04-08 16:50:50 +02: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
|
|
|
|
}
|