Skip to content
lAngelP edited this page Nov 6, 2018 · 1 revision

What is SonarQube?

SonarQube (aka Sonar) is a tool used for static code analysis. It reports bugs, vulnerabilities and "code smells" to the programmer.

How to download SonarQube?

  1. Go to SonarQube downloads and download the latest version (7.4).
  2. Save where you want (eg. /opt/sonarqube-7.4 or C:\sonarqube-7.4\)
  3. That's all. It's installed!!!

How to launch SonarQube?

  1. The only thing you need to launch this tool is execute the script available in bin:
    • Windows: C:\sonarqube-7.4\bin\windows-x86-64\StartSonar.bat
    • Linux: /opt/sonarqube-7.4/bin/linux-x86-64/sonar.sh start

How to launch SonarQube automatically when a build is made?

TODO: FINISH SECTION