10 lines
350 B
Groovy
10 lines
350 B
Groovy
dependencies {
|
|
testImplementation testLibs.assertj
|
|
testImplementation testLibs.compile.testing
|
|
}
|
|
|
|
test {
|
|
jvmArgs '--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED',
|
|
'--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED',
|
|
'--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED'
|
|
}
|