Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why I am getting SonarQube runner executable was not found for SonarQubeRunner 5.3?

I am trying to integrate jenkins and sonarqube.

Sonarqube version is 5.3.

I have a java gradle project to monitor. I have installed both jenkins and sonar on my local linux system. Both run individually fine.

I have setup

Below is my entire configuration.

enter image description here

enter image description here

enter image description here

enter image description here

like image 993
ashishjmeshram Avatar asked Feb 07 '23 23:02

ashishjmeshram


1 Answers

The SonarQubeRunner 5.3 does not exist.

You incorrectly configured SONAR_RUNNER_PATH. You set path to the SonarQube server instead of the runner. The latest version is 2.5.1 (see releases).

Better choose option Install automatically (at work I use SonarQube Runner 2.4 with SonarQube Server 5.3 without any problems).

like image 158
agabrys Avatar answered Feb 10 '23 12:02

agabrys