I have a multi module project and I want too see all FindBugs errors. But when I start the build process, it finds one error at the first subproject, then skips over the rest of the build process and reports "build failed".
How can I configure the FindBugs plugin or maven build process to execute all projects and see all errors and not stop at the beginning?
What you want is probably failOnError = false
So your POM should look something like this
or, alternatively, you can invoke maven with
-Dfindbugs.failOnError=false