2016-10-03 14:25:26 +02:00
|
|
|
dependencies {
|
2020-05-19 16:06:39 +02:00
|
|
|
implementation project(':content-resource')
|
|
|
|
implementation project(':content-xml')
|
2021-05-15 20:03:23 +02:00
|
|
|
implementation project(':content-json')
|
2016-10-03 14:25:26 +02:00
|
|
|
}
|
2024-04-08 16:04:18 +02:00
|
|
|
|
|
|
|
def patchArgs = ['--patch-module', "org.xbib.content.rdf.test=" + sourceSets.test.resources.sourceDirectories.singleFile]
|
|
|
|
|
|
|
|
tasks.named('compileTestJava') {
|
|
|
|
options.compilerArgs += patchArgs
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
jvmArgs += patchArgs
|
|
|
|
}
|