FindBugs Settings

PropertyOptional?Description
maven.findbugs.enableNo

Specifies whether to run FindBugs or not. Useful when a reactor is used across multiple projects.

maven.findbugs.detailYes

Specifies whether "low", "medium", or "high" priority bugs should be listed. Defaults to "medium".

maven.findbugs.conserveSpaceYes

If set to true, FindBugs will disable analyses that improve precision but consume extra memory. Default is false.

maven.findbugs.debugYes

If set to true, FindBugs prints diagnostic information about which classes are being analyzed, and which bug pattern detectors are being run. Default is false.

maven.findbugs.jvmargsYes

It specifies any arguments that should be passed to the Java virtual machine used to run FindBugs. You may need to use this attribute to specify flags to increase the amount of memory the JVM may use if you are analyzing a very large program.

maven.findbugs.excludeFilterYes

Report all bug instances except those matching the filter specified in the xml Filter file. See http://findbugs.sourceforge.net for more information.

maven.findbugs.includeFilterYes

Only report bug instances that match the filter specified in the xml Filter file. See http://findbugs.sourceforge.net for more information.