This page describes how to use both Bitbucket in combination with SonarQube to have your source code analysed. You are just a couple of simple steps away:
We guide you through the steps by referencing a simple "training" project in SonarQube named omarsWP9T2 (SonarQube key: DemoKey) which is a simple Java project (non-Maven, non-Gradle, etc).
For the sake of easy guidance throughout this manual, we use a handful of pseudo-names that help keeping your local setup aligned with SonarQube installation requirements
Pseudo name | Description |
---|---|
BRANCH_NAME | Name of branch under consideration. Can optionally be used in combination with PATH_OF_REPOSITORY |
PATH_OF_REPOSITORY | Pathname to your Git project (Github, BitBucket, etc) |
SQ_SCANNER_INSTALL_DIR | This name refers to the local installation directory of the scanner for SonarQube |
SQ_PROJECT_LOCAL_INSTALL_DIR | This name refers to the local installation directory of your project on your cumputer |
SONARQUBE_TOKEN | Your SonarQube token. This is usually created when a project is entered into SonarQube but can also be newly requested if needed. |
First you need to clone the Bitbucket repository to your local machine.
Clone your project repository
1 |
|
The following steps are nesessary to prepare the SonarQube scanner.
To install the scanner on your machine please follow instructions here.
When installed, the SonarQube scanner usually resides in a directory on your local machine. The installation directory of the scanner is usually different from the installation location of the development project. We will be referring to the installation directory of the scanner as SQ_SCANNER_INSTALL_DIR.
This step can be omitted when you have already created and SAVED your SonarQube token. If you have not done it before or if you have forgotten your SonarQube token, please follow the SonarQube description here for more info on generating tokens.
Remember your SonarQube token (now referred to as SONARQUBE_TOKEN). You will need it in the next step.
There is a variety of options, all of which serve to adjust your SonarQube scanner to your environment. These adjustments must be done in the file sonar-scanner.properties which can be found within the <SQ_SCANNER_INSTALL_DIR>/conf directory.
We recommend to work with the following parameters:
sonar.host.url=
https://sonarqube.software.geant.orgsonar.login=<
SONARQUBE_TOKEN>
sonar-scanner.properties - example
1 |
|
Add the executable directory of the SonarQube scanner (<SQ_SCANNER_INSTALL_DIR>/bin) to your PATH environment variable. Typical installation directories are:
/usr/local/bin,
$HOME/bin
You can verify your installation by opening a new command prompt/terminal window and executing the command sonar-scanner -h
Your output should look similar to the following:
Test the PATH variable
1 |
|
sonar-project.properties
Then, in order to run the scanner on a specific project, you need to do the following:
sonar-project.properties
This file needs to have following properties:
sonar.projectKey=demo-omars-project
# This is the ProjectKey found in the SonarQube list of projectssonar.sources=. # Needs to point to the source files
sonar.java.binaries
# This is the path to the .class
java files to be analyzed
sonar-project.properties - example
1 |
|
Now that you have the set up and files configured properly, all you need to do is to run the sonar-scanner from within the project's directory.
The command line should eventually show "EXECUTION SUCCESS", as depicted below:
That's all. Now you can go to the SonarQube web interface to view the results of the analysis:
A typical SonarQube analysis will include
SonarQube results in Bitbucket:
in Bitbucket you have to enable Sonar. This can be done from your Repository settings. On the left-hand side click on "Sonar" under ADD-ONS. This will open up the Sonar Settings page on the right, click on Sonar Enabled as shown below
Also, enable “Use new Sonar branching and pull request support” here. DO NOT FORGET TO SAVE
Then, if you go back to your repository main page you will be able to find Sonar analysis results at the top
You can click on the results and you will be redirected to the project issues section on SonarQube website
SonarQube is a powerful platform for continuous inspection of source code and various aspects pertaining to quality and best practices. Integrating SonarQube analysis into pull requests in Bitbucket server makes this very useful for developers. SonarQube's website has more information on the product.
Additionally, there is also an integration between GitLab CI and SonarQube:
MANUAL: Continuous Integration Setup with GitLab CI and SonarQube