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