Skip to content

Commit

Permalink
exclude felix
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Dec 2, 2024
1 parent a7f6e14 commit 91238ee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/test/java/org/htmlunit/ExternalTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,12 @@ private static boolean isIgnored(@SuppressWarnings("unused") final String groupI
return true;
}

// 6.x requires java11
if ("org.apache.felix".equals(groupId)
&& version.startsWith("6.")) {
return true;
}

// really old common versions
if ("commons-io".equals(artifactId) && (version.startsWith("2003"))) {
return true;
Expand Down

0 comments on commit 91238ee

Please sign in to comment.