views:

1933

answers:

6

I'm using Eclipse and I'm wondering what the best Eclipse/Java/Flexbuilder code review tool is. If it matters we're using SVN as our SCM.

Here are the following I've come across:

+2  A: 

If you are trying to stay in the Eclipse workbench, this may not be for you but we use Review Board and like it quite alot.

Review Board

RC
A: 

You could try Java Code Reviewer: http://jcodereview.sourceforge.net/

digiarnie
A: 

Check out FlexPMD. As of today it also has a 1.0 release for an eclipse plugin (and textmate), though it also easily works with ANT or Maven.

http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD

FlexPMD is a tool that helps to improve code quality by auditing any AS3/Flex source directory and detecting common bad practices, such as:

  • Unused code (functions, variables, constants, etc.)
  • Inefficient code (misuse of dynamic filters, heavy constructors, etc.)
  • Over-complex code (nested loops, too many conditionals, etc.)
  • Over-long code (classes, methods, etc.)
  • Incorrect use of the Flex component lifecycle (commitProperties, etc.)
jonbcampos
These look like great tools for doing "automatated" code reviews by a single developer (and we alread use PMD on the Java side so they'll be a good addition on the Flex side).I'm looking for team code review tools to let the developers easily code review.
Dougnukem
+1  A: 

Jupiter supports up to Eclipse 3.5. Check out Jupiter Downloads Page

austen
+1  A: 

see my question, and VonC's answer.

in short, you may find ReviewClipse suitable.

please share, if (or once) you're using it and how is it working for you.

asaf :-)

alt text

Asaf
Good link ;) +1
VonC
A: 

Code Collaborator from Smart Bear has an Eclipse plugin and supports Subversion.

See here in Code Collaborator's manual: http://smartbear.com/docs/manual/5.0/subversion_overview.html

(Full disclosure - I am a Smart Bear employee)

Roy Paterson