Eclipse Juno Metrics Plugins

后端 未结 3 559
孤街浪徒
孤街浪徒 2021-02-06 14:27

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 rele

相关标签:
3条回答
  • 2021-02-06 14:48

    You may also chek the plug-in for Eclipse called "Metrics". It's and old one but it seems to work fine.

    http://metrics.sourceforge.net/

    0 讨论(0)
  • 2021-02-06 14:52

    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

    0 讨论(0)
  • 2021-02-06 14:55

    I found the https://github.com/leonardobsjr/metrics3 source code work fine with eclipse 4.5 :)

    You need compile and export the plugins for yourself.

    Or you can use my updatesite: https://github.com/qxo/eclipse-metrics-plugin/raw/master/updatesite/

    from: https://github.com/qxo/eclipse-metrics-plugin

    For Now (1.3.9) You must in "Java Perspective" for enable metrics with this plugin on a project (right-click project -> properties -> metrics -> "enable metrics").

    0 讨论(0)
提交回复
热议问题