net-http/net-http-client-netty/build.gradle

17 lines
399 B
Groovy
Raw Normal View History

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