I have a requirement where i have to configure findbugs software in Maven can anyone help me know how to add the plugin to the pom.xml to make this work. [ March 22, 2008: Message edited by: Arvind Kovuri ]
yup i tried using the configuation :- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.0-beta-1</version> <configuration> <threshold>High|Normal|Low|Exp|Ignore</threshold> <effort>Min|Default|Max</threshold> <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> <includeFilterFile>findbugs-include.xml</includeFilterFile> <visitors>FindDeadLocalStores,UnreadFields</visitors> <omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors> <pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList> </configuration> </plugin> But it says that it cannot locate the fb-contrib-2.8.0.jar file