2017-08-14 23:00:13 +02:00
|
|
|
dependencies {
|
2022-08-04 11:47:14 +02:00
|
|
|
api libs.net
|
|
|
|
testImplementation libs.jackson.databind
|
|
|
|
}
|
2024-04-08 16:04:18 +02:00
|
|
|
|
|
|
|
def patchArgs = ['--patch-module', "org.xbib.content.resource.test=" + sourceSets.test.resources.sourceDirectories.singleFile]
|
|
|
|
|
|
|
|
tasks.named('compileTestJava') {
|
|
|
|
options.compilerArgs += patchArgs
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
jvmArgs += patchArgs
|
|
|
|
}
|