net/net-path/build.gradle

15 lines
310 B
Groovy
Raw Permalink Normal View History

2022-10-20 09:43:33 +02:00
dependencies {
api project(':net')
}
2024-03-04 13:54:05 +01:00
def moduleName = 'org.xbib.net.path.test'
def patchArgs = ['--patch-module', "$moduleName=" + files(sourceSets.test.resources.srcDirs).asPath ]
tasks.named('compileTestJava') {
options.compilerArgs += patchArgs
}
tasks.named('test') {
jvmArgs += patchArgs
}