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 8c0972c commit e177a90Copy full SHA for e177a90
1 file changed
src/test/java/org/htmlunit/ExternalTest.java
@@ -365,6 +365,12 @@ private static boolean isIgnored(@SuppressWarnings("unused") final String groupI
365
return true;
366
}
367
368
+ // 6.x requires java17
369
+ if ("org.junit.jupiter".equals(groupId)
370
+ && version.startsWith("6.")) {
371
+ return true;
372
+ }
373
+
374
// really old common versions
375
if ("commons-io".equals(artifactId) && (version.startsWith("2003"))) {
376
0 commit comments