I have an android project. I want to introduce findbugs
in my project as a gradle plugin. I tried to edit the project\'s build.gradle
as below.
I see some problems with your configuration:
2.0.1
version use latest 3.0.1
reportLevel
to low
instead of high
to report all the violationsincludeFilter
or excludeFilter
- these are only whitelist and blacklists of checks if you need some customizationTo run analysis just invoke gradle findbugsMain
. Results should be visible in the output.