| All Spotbugs bug is report as low priority bug but actually it is high priority bug Attach image is capture from spotbugsXml.xml is show that bug has priority = 1 mean high. Bellow is my spotbug pom.xml setting
<plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>3.1.9</version> <configuration> <effort>Max</effort> <threshold>Low</threshold> <failOnError>true</failOnError> <plugins> <plugin> <groupId>com.h3xstream.findsecbugs</groupId> <artifactId>findsecbugs-plugin</artifactId> <version>LATEST</version> <!-- Auto-update to the latest stable --> </plugin> <plugin> <groupId>com.mebigfatguy.sb-contrib</groupId> <artifactId>sb-contrib</artifactId> <version>7.4.6</version> </plugin> </plugins> </configuration> </plugin>
|