views:

95

answers:

4

I would like to know which Eclipse plugin do you think is best for doing code reviews? Thanks.

A: 

I don't know if you are thinking about this when you say "code review", but maybe Checkstyle is what you are looking for.

Ham
A code review system is about inspecting patches, commenting on them and then accepting or hand them back for a rewrite.Checkstyle is good but only checks for Coding standards. You won't discover logic errors with it.
MKroehnert
Thanks for your explanation, I didn't know exactly about that.
Ham
+1  A: 

Hammurapi used to be popular, not too sure if it's still commonly used.

CQP (Code Quality Plugin) http://sourceforge.net/projects/cqp/files/ is one which runs all of the best tools: JUnit, Checkstyle, Findbugs, JDepend, Emma, Jalopy on your project

JoseK
A: 

You can use the following Eclipse Plugin for the Code review

Code reviews are possibility the single most efficient way to reduce defects and improve code quality. Simply put, code reviews involve manually inspecting source code for defects, often using a checklist of common errors to help focus the search. In addition, they are an effective way of improving your team's development skills.

You can check this link devx.com

This will defnitely Help,

For Coding standard, you can check this out Checkout http://checkstyle.sourceforge.net/. PLugins are avaiable for the Eclipse

harigm
How is that link going to help, if I have to register for "reading more"?
jhwist
Yes, I have shown the resource where you can find more info and download and configure the plugin to the eclipse.
harigm
A: 

There is ReviewClipse.

But I have not tested it as of yet.

MKroehnert