findbugsをmavenにて起動する際の設定の記述は pom.xmlの以下に記述されています.
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <onlyAnalyze>com.aimluck.-</onlyAnalyze> <effort>Max</effort> <findbugsXmlOutput>true</findbugsXmlOutput> <xmlOutput>true</xmlOutput> <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin>
除外フィルタは以下で設定しています.
<excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>