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 640f6a2 commit e386e93Copy full SHA for e386e93
lib-extra/build.gradle
@@ -27,4 +27,10 @@ dependencies {
27
// we'll hold the core lib to a high standard
28
spotbugs { reportLevel = 'low' } // low|medium|high (low = sensitive to even minor mistakes)
29
30
-test { useJUnitPlatform() }
+test {
31
+ useJUnitPlatform()
32
+ if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) {
33
+ // needed for EclipseCdtFormatterStepTest
34
+ jvmArgs '--add-opens=java.base/java.lang=ALL-UNNAMED'
35
+ }
36
+}
0 commit comments