Ignore spotbugs in the legacy module

This commit is contained in:
aherbert 2021-06-09 16:53:06 +01:00
parent af647182ef
commit 8a60de3263
1 changed files with 10 additions and 0 deletions

View File

@ -140,6 +140,16 @@
<rerunFailingTestsCount>5</rerunFailingTestsCount>
</configuration>
</plugin>
<!-- Ignore spotbugs in the legacy module.
New development will move code to a new package and should address issues. -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>${commons.spotbugs.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>