1

do you know of any open source tool that can be used for code metric analysis in java? it should be able to integrate well in jenkins. I'm trying to setup a complete test suite for our project that includes coverage test, unit test, static code analysis, code standard check and code metric analysis.

klambiguit
  • 527
  • 1
  • 3
  • 14
  • 1
    http://stackoverflow.com/questions/4080/what-code-analysis-tools-do-you-use-for-your-java-projects Though closed, but still may answer all of your questions – sundar Apr 10 '13 at 12:41

3 Answers3

4

Based on what you need the best choice would be Sonar, it has all you need plus some more. Check out for more at: http://www.sonarsource.org/

b4gam
  • 61
  • 2
0

Clover for test coverage. It integrates with JUnits and I have integrated it with Jenkins.
Klocwork for code static analysis.

danieln
  • 4,795
  • 10
  • 42
  • 64
0

Open source : Sonar, clover, PMD, findbugs, you can also try JArchitect wich is free for open source contributors

John
  • 131
  • 4