Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Juno Metrics Plugins

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.

like image 232
Pablo Jomer Avatar asked Oct 05 '22 21:10

Pablo Jomer


1 Answers

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

like image 94
Miquel Avatar answered Oct 10 '22 11:10

Miquel