13 lines
270 B
Groovy
13 lines
270 B
Groovy
|
|
||
|
|
||
|
def moduleName = 'org.xbib.net.mime.test'
|
||
|
def patchArgs = ['--patch-module', "$moduleName=" + files(sourceSets.test.resources.srcDirs).asPath ]
|
||
|
|
||
|
tasks.named('compileTestJava') {
|
||
|
options.compilerArgs += patchArgs
|
||
|
}
|
||
|
|
||
|
tasks.named('test') {
|
||
|
jvmArgs += patchArgs
|
||
|
}
|