Skip to content

Commit 7aba388

Browse files
author
Simon Priadka
committed
further findbugs changes
1 parent 82e46de commit 7aba388

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pom.xml

100644100755
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -405,14 +405,17 @@
405405
<!-- This replaces unsupported findbugs plugin -->
406406
<groupId>com.github.spotbugs</groupId>
407407
<artifactId>spotbugs-maven-plugin</artifactId>
408-
<version>4.2.2</version>
408+
<version>4.7.0.0</version>
409409
<executions>
410410
<execution>
411411
<id>finding-bugs</id>
412412
<phase>compile</phase>
413413
<goals>
414414
<goal>check</goal>
415415
</goals>
416+
<configuration>
417+
<failOnError>false</failOnError>
418+
</configuration>
416419
</execution>
417420
</executions>
418421
</plugin>
@@ -421,9 +424,9 @@
421424

422425
<profiles>
423426
<profile>
424-
<id>jdk17</id>
427+
<id>jdk11plus</id>
425428
<activation>
426-
<jdk>[17,)</jdk>
429+
<jdk>[11,)</jdk>
427430
</activation>
428431
<properties>
429432
<client.jvm.jpms.args>--add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.lang.reflect=ALL-UNNAMED --add-opens=java.base/java.io=ALL-UNNAMED --add-opens=java.base/java.security=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.util.concurrent=ALL-UNNAMED --add-opens=java.management/javax.management=ALL-UNNAMED --add-opens=java.naming/javax.naming=ALL-UNNAMED</client.jvm.jpms.args>

0 commit comments

Comments
 (0)