2022-10-20 10:19:32 +02:00
|
|
|
dependencies {
|
|
|
|
api project(':net-http-server-netty-secure')
|
|
|
|
api project(':net-http-client-netty-secure')
|
|
|
|
api libs.conscrypt
|
|
|
|
}
|
2024-03-04 16:03:29 +01:00
|
|
|
|
|
|
|
def moduleName = 'org.xbib.net.http.netty.conscrypt.test'
|
|
|
|
def patchArgs = ['--patch-module', "$moduleName=" + files(sourceSets.test.resources.srcDirs).asPath ]
|
|
|
|
|
|
|
|
tasks.named('compileTestJava') {
|
|
|
|
options.compilerArgs += patchArgs
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.named('test') {
|
|
|
|
jvmArgs += patchArgs
|
|
|
|
}
|