File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/test/java/com/gargoylesoftware/htmlunit Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 36
36
37
37
<!-- As a property, as it is included in Checkstyle build -->
38
38
<checkstyle .version>9.3</checkstyle .version>
39
- <spotbugs .version>4.5.3 </spotbugs .version>
39
+ <spotbugs .version>4.6.0 </spotbugs .version>
40
40
<pmd .version>6.43.0</pmd .version>
41
41
<archunit .version>0.23.1</archunit .version>
42
42
<dependencycheck .version>7.0.0</dependencycheck .version>
47
47
<plugin >
48
48
<groupId >org.apache.maven.plugins</groupId >
49
49
<artifactId >maven-compiler-plugin</artifactId >
50
- <version >3.10 .0</version >
50
+ <version >3.9 .0</version >
51
51
<configuration >
52
52
<testExcludes >
53
53
<exclude >**/CodeChecker.java</exclude >
Original file line number Diff line number Diff line change @@ -350,11 +350,17 @@ private static boolean isIgnored(@SuppressWarnings("unused") final String groupI
350
350
if ("checkstyle" .equals (artifactId ) && (version .startsWith ("10." ))) {
351
351
return true ;
352
352
}
353
- // version 3.11.x seem to requires
353
+ // version 3.11.x seem to requires JDK11
354
354
if ("maven-site-plugin" .equals (artifactId ) && (version .startsWith ("3.11." ))) {
355
355
return true ;
356
356
}
357
357
358
+ // there is a serious bug
359
+ // https://github.com/HtmlUnit/htmlunit/issues/457
360
+ if ("maven-compiler-plugin" .equals (artifactId ) && (version .startsWith ("3.10.0" ))) {
361
+ return true ;
362
+ }
363
+
358
364
// really old common versions
359
365
if ("commons-io" .equals (artifactId ) && (version .startsWith ("2003" ))) {
360
366
return true ;
You can’t perform that action at this time.
0 commit comments