Eclipse Juno Metrics Plugins

eclipse, java, metrics

Solution

Check out the following, which work fine on Juno:

- checkstyle: code style, including method length and others

- checkstyle again: duplicate code detection

- checkstyle again: Cyclomatic Complexity

- cobertura: for test coverage

- findbugs: potential pitfalls in your code

- Google Plugin for eclipse google's own code quality tools including test generation

I suppose you are not looking for profilers, but if you are, consider the (newly resurrected?) TPTP

Problem

What eclipse metrics plugins exist for the JUNO release of eclipse? I have tried a few general purpose metrics plugins but non of them has functioned properly with the JUNO release of eclipse. Almost forgot, we are using Java as programming language. I want metrics like cyclomatic-complexity, lines of code, method length, parameter excess and so on.

Original source