Re: findbugs

2012-07-30 Thread Zoltan Farkas
Running Findbugs from ant is simple as well, just google "ant Findbugs", plenty of doc and examples on how to do it... --z On Jul 30, 2012, at 11:18 AM, Radim Kolar wrote: > i am using maven to build cassandra. i didnt have in mind to contribute build > system because you are not interested

Re: findbugs

2012-07-30 Thread Zoltan Farkas
Findbugs can be customized with a exclude filter to exclude from checking issues that produce a high number of false positives. For the rest of "false positives" @suppresswarnings annotation can be used. I suggest Understanding the issue Findbugs highlights before suppressing it, I did see devs

Re: findbugs

2012-07-23 Thread Zoltan Farkas
In general, I prefer integrating findbugs into the build process and fail the build if issues are found. I am a strong believer in this approach, increases the quality of the project significantly. Enforcing coding style and complexity rules is one step further... Cheers --z On Jul 23, 2012,