15 lines
349 B
Groovy
15 lines
349 B
Groovy
dependencies {
|
|
api project(':net-http-server')
|
|
api libs.j2html
|
|
}
|
|
|
|
def moduleName = 'org.xbib.net.http.j2html.test'
|
|
def patchArgs = ['--patch-module', "$moduleName=" + files(sourceSets.test.resources.srcDirs).asPath ]
|
|
|
|
tasks.named('compileTestJava') {
|
|
options.compilerArgs += patchArgs
|
|
}
|
|
|
|
tasks.named('test') {
|
|
jvmArgs += patchArgs
|
|
}
|