{iframe:src=http://update.sonarsource.org/plugins/issuesreport.html|width=700|height=250|frameborder=0}
Your browser does not support iframes.
{iframe} |
The Issues Report plugin provides the ability to run local Sonar analyses. The main use case is for a developer to check his/her code before pushing it to the SCM.
It generates an HTML report that displays a list of violations that can be filtered by severity, new violations only, etc.
It supports all languages.
Here's an example of HTML report that you can download:

| Note that to perform local analyses, a Sonar Eclipse plugin is also available. It currently supports Java, C/C++ and Python. |
Note that you do not need to install any local Sonar server and database.
Just run a Sonar analysis on your project with your favorite analyzer (Sonar Runner, Maven or Ant). To run the analysis locally (without making the results available on the remote Sonar server), just set the 'sonar.dryRun' property to 'true' and make sure that the 'sonar.host.url' is properly set to match your remote Sonar server.
To get a local report:

sonar-runner -Dsonar.dryRun=true -Dsonar.issuesReport.html.enable=true -Dsonar.inclusions=src/myCobolProgram.cbl |
| Note that the Issues Report plugin is not yet compatible with multi-module projects. See https://jira.codehaus.org/browse/SONARPLUGINS-2805. |