findbugs-maven-plugin
findbugs-maven-plugin copied to clipboard
Maven Mojo Plug-In to generate reports based on the FindBugs Analyzer
how to specify findbugsXml.xml file encoding? Otherwise, an error will occur while generating reports by Invalid byte 1 of 1-byte UTF-8 sequence.
Say the source contains cyrillic symbols in UTF-8: ``` // провокация бага public static SimpleDateFormat df = new SimpleDateFormat(); ``` The platform encoding is the default Cp1251, so let's explicitly...
I've been trying to figure out how to configure this plugin to respect [`@SuppressFBWarnings` annotations](http://mvnrepository.com/artifact/com.google.code.findbugs/annotations) but have failed so far. Is there a way, or am I trying to do...
FindBugs Maven Plugin behaves differently depending whether `src/main/java` is empty or not. If it doesn't exist (module is test-only and contains only `src/test/java`) build is not failing: ``` [INFO] ---...