Skip to content

Commit

Permalink
Disable spotbugs for now
Browse files Browse the repository at this point in the history
  • Loading branch information
tilovillwock committed Dec 9, 2024
1 parent 6b4fff4 commit fa0169f
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -433,19 +433,19 @@
<!-- <ignore />-->
<!-- </action>-->
<!-- </pluginExecution>-->
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<versionRange>[3.1.12,)</versionRange>
<goals>
<goal>check</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
<!-- <pluginExecution>-->
<!-- <pluginExecutionFilter>-->
<!-- <groupId>com.github.spotbugs</groupId>-->
<!-- <artifactId>spotbugs-maven-plugin</artifactId>-->
<!-- <versionRange>[3.1.12,)</versionRange>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- </pluginExecutionFilter>-->
<!-- <action>-->
<!-- <ignore />-->
<!-- </action>-->
<!-- </pluginExecution>-->
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
Expand Down Expand Up @@ -488,26 +488,26 @@
</configuration>
</plugin>
<!-- spotbugs and fail the build -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.5.0</version>
<executions>
<execution>
<id>spotbugs</id>
<phase>compile</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<effort>Max</effort>
<threshold>Low</threshold>
<xmlOutput>true</xmlOutput>
<excludeFilterFile>buildconfig/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
</plugin>
<!-- <plugin>-->
<!-- <groupId>com.github.spotbugs</groupId>-->
<!-- <artifactId>spotbugs-maven-plugin</artifactId>-->
<!-- <version>4.8.5.0</version>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>spotbugs</id>-->
<!-- <phase>compile</phase>-->
<!-- <goals>-->
<!-- <goal>check</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- <configuration>-->
<!-- <effort>Max</effort>-->
<!-- <threshold>Low</threshold>-->
<!-- <xmlOutput>true</xmlOutput>-->
<!-- <excludeFilterFile>buildconfig/spotbugs-exclude.xml</excludeFilterFile>-->
<!-- </configuration>-->
<!-- </plugin>-->
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
Expand Down Expand Up @@ -847,7 +847,7 @@
<jacoco.skip>true</jacoco.skip>
<maven.gitcommitid.skip>true</maven.gitcommitid.skip>
<pmd.skip>true</pmd.skip>
<spotbugs.skip>true</spotbugs.skip>
<!-- <spotbugs.skip>true</spotbugs.skip>-->
</properties>
</profile>
<profile>
Expand Down

0 comments on commit fa0169f

Please sign in to comment.