Is it possible to detect unused methods in a source tree using FindBugs? I see some posts on SO where users are claiming to do that, s开发者_如何转开发ome others asking how to do this in FB and others
Has anyone managed to get findbugs 2.3.1, 2.3.2-SNAPSHOT or 2.4-SNAPSHOT to work with a Maven 3.x project?
We are in the process of defining our software development process and wanted to get some feed back from the gro开发者_开发知识库up about this topic.
i like to configure Findsbug-Filter to ignore some priority 2 and 3 warnings. 开发者_Python百科Something like this.
I have equals this method, but Findbugs is reporting error, any idea? @Overr开发者_StackOverflow社区ide
In our code we usually us开发者_Go百科e the following pattern: Connection conn; try{ conn = getConnection();
how do I开发者_运维问答 link the bugs to the src file when using the findbugs ant task?Use sourcePath, an optional nested element which specifies a source directory path containing source files used t
There was a question comparing PMD and CheckStyle. However, I can\'t find a nice breakdown on the differences/similarities between PMD and FindBugs. I believe a key difference is that PMD works on sou
If you are using Findbugs for compiled code inspection, is it possible to fail a build based on the result of a single detector or category of detectors?
This is my class (JAX-RS annotated): @Path(\"/\") public class Foo { @Context privat开发者_运维技巧e UriInfo uriInfo;