Your browser does not support iframes.
Description / Features
The Issues Report plugin provides the ability to run local SonarQube analyses on your machine. The main use case is for developers to check the code they have added or changed before pushing it to the SCM.
It generates an HTML report that displays a list of issues that can be filtered by severity, new issues (comparison made against the latest version available on the remote server), etc.
It supports all languages.
Here's an example of HTML report that you can download:
Sonar Eclipse Plugin
Installation
- Install the plugin through the Update Center or download it into the SONARQUBE_HOME/extensions/plugins directory
- Restart the SonarQube server
Usage
Note that you do not need to install any SonarQube server and database on your local machine. Just install and configure your favorite analyzer (SonarQube Runner, Maven or Ant).
Then, copy on your local machine the analysis configuration file that is used to analyze the project on the remote server. Make sure that the sonar.sources
property refers to the directory containing the source code on your local machine (or update it accordingly). The tree structure of the source code on your local machine must match the tree structure that has been remotely analyzed by SonarQube. Finally, run a local analysis:
# Set the "sonar.dryRun" property to "true" to run a local analysis sonar-runner -Dsonar.dryRun=true
To get a local report:
- To get an HTML report, set the
sonar.issuesReport.html.enable
property totrue
. To set the location of the HTML report, set thesonar.issuesReport.html.location
property: absolute or relative path to the SonarQube working directory; default is .sonar/issues-report.html for the SonarQube Runner and Ant, target/sonar/issues-report.html for Maven. - To display a short report in the console, set the
sonar.issuesReport.console.enable
property totrue
:
sonar.inclusions
property can be set.
sonar-runner -Dsonar.dryRun=true -Dsonar.issuesReport.html.enable=true -Dsonar.inclusions=myCobolProgram.cbl
Multi-module project compatibility
Change Log