We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a88cb commit b256bd4Copy full SHA for b256bd4
testlib/build.gradle
@@ -22,6 +22,15 @@ dependencies {
22
spotbugs { reportLevel = 'high' } // low|medium|high (low = sensitive to even minor mistakes)
23
24
apply from: rootProject.file('gradle/special-tests.gradle')
25
+tasks.named('test') {
26
+ if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_16)) {
27
+ // for Antlr4FormatterStepTest and KtLintStepTest
28
+ def args = [
29
+ '--add-opens=java.base/java.lang=ALL-UNNAMED'
30
+ ]
31
+ jvmArgs args
32
+ }
33
+}
34
35
javadoc {
36
options.addStringOption('Xdoclint:none', '-quiet')
0 commit comments