How to build all subprojects in multi-module maven project with FindBugs?

532 Views Asked by At

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?

1

There are 1 best solutions below

0
On

What you want is probably failOnError = false

So your POM should look something like this

    <plugin>
      <groupId>org.codehaus.mojo</groupId>
      <artifactId>findbugs-maven-plugin</artifactId>
      <version>2.5.3</version>
      <configuration>
         <failOnError>false</failOnError>
      </configuration>
    </plugin>

or, alternatively, you can invoke maven with -Dfindbugs.failOnError=false