Code Metric Analysis for JAVA

Do you know any open source tool that can be used to analyze code metrics in java? he must be able to integrate well in the jenkins. I am trying to install a complete test suite for our project, which includes a coverage test, unit test, static code analysis, standard code verification, and code metric analysis.

+1
source share
3 answers

Based on what you need, the best choice is Sonar, it has everything you need and a little more. Further information can be found at: http://www.sonarsource.org/

+4
source

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

0
source

Open source: sonar, clover, PMD, findbugs, you can also try JArchitect , which is free for open source authors.

0
source

Source: https://habr.com/ru/post/1011964/


All Articles