Skip to content

Commit

Permalink
further findbugs changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Priadka committed Aug 4, 2022
1 parent 82e46de commit 7aba388
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pom.xml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -405,14 +405,17 @@
<!-- This replaces unsupported findbugs plugin -->
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.2</version>
<version>4.7.0.0</version>
<executions>
<execution>
<id>finding-bugs</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<failOnError>false</failOnError>
</configuration>
</execution>
</executions>
</plugin>
Expand All @@ -421,9 +424,9 @@

<profiles>
<profile>
<id>jdk17</id>
<id>jdk11plus</id>
<activation>
<jdk>[17,)</jdk>
<jdk>[11,)</jdk>
</activation>
<properties>
<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>
Expand Down

0 comments on commit 7aba388

Please sign in to comment.