| Info | ||||
|---|---|---|---|---|
| ||||
|
The Sonar SonarQube Runner is recommended as the default launcher to analyze a project with SonarSonarQube.
Prerequisites
You must have previously installed the Sonar SonarQube Runner and read Analyzing Code Source.
| Note | ||
|---|---|---|
| ||
This page describes how to use the Sonar Runner 2.0+ |
Usage
Simple Project
Create a configuration file in the root directory of the project: sonar-project.properties
| Code Block | ||||
|---|---|---|---|---|
| ||||
# required metadata sonar.projectKey=my:project sonar.projectName=My project sonar.projectVersion=1.0 # optional description sonar.projectDescription=Fake description # path to source directories (required) sonar.sources=srcDir1,srcDir2 # path to test source directories (optional) sonar.tests=testDir1,testDir2 # path to project binaries (optional), for example directory of Java bytecode sonar.binaries=binDir # optional comma-separated list of paths to libraries. Only path to JAR file and path to directory of classes are is supported. sonar.libraries=path/to/library/*.jar,path/to/classes/dir,path/to/specific/library/myLibrary.jar,parent/*/*.jar # The value of the property must be the key of the language. sonar.language=cobol # Additional parameters sonar.my.property=value |
Run the following command from the project base directory to launch the Sonar analysis:
| Code Block | ||
|---|---|---|
| ||
sonar-runner |
Security
Since Sonar 3SonarQube3.4, if a project cannot be accessed anonymously, the 'sonar.login' and 'sonar.password' properties are required to run an analysis on this project. These properties have to be set to the credentials of a user having the 'User' role on this project. You can set them either:
- directly on the command line by adding
-Dsonar.login=myUser -Dsonar.password=myPassword - or in the 'sonar-project.properties' project configuration file
- or in the 'sonar-runner.properties' global configuration file
A project cannot be anonymously accessed when either:
- the '
sonar.forceAuthentication' property is set to 'true' - or the 'the
sonar.forceAuthentication' property is set to 'false' and the 'Anyone' group has not been granted a 'User' role on the project
Project Samples
To help you getting started, for each language, a simple project sample is available on github that can be browsed or downloaded: projects projects/languages
Multi-module Project
There are two ways to define a multi-module structure in SonarSonarQube:
| Using the given file structure... | ... with the given 'properties' files | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Way #1 Set all the configuration in the properties file in the root folder | ![]() |
| |||||||||||||||||||||||||||
Way #2 Set the configuration in multiple properties files | ![]() |
|
...
- Properties are inherited from parent to children
They can obviously be overriden:- By prefixing them with the module identifier (way #1)
- Simply by defining them in the 'sonar-project.properties' file located in the module (way #2)
- Module base directory can be specified for special cases
By default, the module base directory is guessed from the module identifier (like in the examples above). But it can be redefined using the 'sonar.projectBaseDir' property.
For instance, here are two use cases and the way to redefine the base directory of the modules:the folder of a module contains white spaces or special characters:
Code Block language bash module1.sonar.projectBaseDir=My Module One
the module is not located directly in the parent folder, but in a deeper directory structure:
Code Block language bash module1.sonar.projectBaseDir=modules/mod1 module2.sonar.projectBaseDir=modules/mod2
- A project that defines modules (or a module that defines sub-modules) cannot define a source code folder to be analyzed by Sonar.
To help you getting started, multi-module project samples are available on github that can be browsed or downloaded:
- Modules with the same structure: projects/multi-module/sonar-runner/java-sonar-runner-modules-same-structure
- Modules with different structures: projects/multi-module/sonar-runner/java-sonar-runner-modules-different-structures
- A configuration file for each module: projects/multi-module/sonar-runner/java-sonar-runner-modules-own-configuration-file
Multi-module and Multi-language Project
Since Sonar 3SonarQube3.3, it is possible to run an analysis on a multi-module project whose modules contains source code from different languages.
In addition to the multi-module configuration, the only mandatory property to set is the language for each module:
| Code Block | ||||||
|---|---|---|---|---|---|---|
| ||||||
module1.sonar.language=java module2.sonar.language=javascriptjs ... |
To help you getting started, a multi-language project sample is available on github that can be browsed or downloaded: projects projects/languages/multi-language/multi-language-java-javascript-sonar-runner
Running Task
Before SonarQube3.6, it was only possible to run a project analysis. Since SonarQube3.6, it is possible to run other tasks such as:
| Code Block | ||
|---|---|---|
| ||
# To run the computation of views (Views plugin is required) sonar-runner views # To run the computation of reports (Report plugin is required) sonar-runner report # To run the computation of developers data (Developer Cockpit plugin is required) sonar-runner devcockpit |
Advanced Usage
If a sonar-project.properties file cannot be created in the root directory of the project, there are several alternatives:
...
The root folder of the project to analyze can be set through the 'project.home' property. This folder must contain a sonar-project.properties file if the mandatory properties (like 'sonar.projectKey') are not specified on the command line.
Additional analysis parameters can be defined in this project configuration file or through command-line parameters.
Troubleshootings
| Note | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|
If you get an java.lang.OutOfMemoryError, you can set the SONAR_RUNNER_OPTS environment variable, like this in *nix environments:
On Windows environments, avoid the double-quotes, since they get misinterpreted, turning the two parameters into a single one.
|
Migrating from
...
SonarQube Runner 1.X to
...
SonarQube Runner 2.0
Replace the following properties in the sonar-project.properties file:
sources=>sonar.sourcestests=>sonar.testsbinaries=>sonar.binarieslibraries=>sonar.libraries
sonar.sourceEncoding property in the sonar-project.properties file.


