{iframe:src=http://update.sonarsource.org/plugins/qualityindex.html|width=700|height=250|frameborder=0}
Your browser does not support iframes.
{iframe} |
The Quality Index plugin combines a global measure (quality index) of quality with a measure of the method complexity (complexity factor).
The Quality Index measures 4 weighted axes of quality and combines them to give a global note between 0 and 10 to the project, 10 being the best.

Coding violations: a PMD compliance index
Coding = (Blocker * 10 + Critical * 5 + Major * 3 + Minor + Info) / ValidLines
Where:
Complexity = (Complexity>30 * 10 + Complexity>20 * 5 + Complexity>10 * 3 + Complexity>1) / ValidLines
Where:
Coverage = Code coverage by unit tests.
If there is no unit tests and thus no code coverage, the Coverage axis will get the worst grade.
Style violations: a Checkstyle compliance index
Style = (Errors * 10 + Warnings) / ValidLines * 10
Where:
Quality Index = 10 - 4.5 * Coding - 2 * Complexity - 2 * Coverage - 1.5 * Style
The Complexity Factor measures the complexity density.
Complexity Factor = (5 * Complexity>30) * 100 / (Complexity>1 + Complexity>10 + Complexity>20 + Complexity>30)
Where:
1. Copy the jar into /extensions/plugins/ directory
2. Restart Sonar Web server
3. Launch a new quality analysis and the metrics will be fed