Installing SonarQube and Sonar in Jenkins

I have installed SonarQube-4.3 and Jenkins in my machine. To integrate Sonar with Jenkins, the SonarQube plugin was installed.

Do I need to install Sonar-runner on my machine in order to run the analysis through Jenkins?

+3


source to share


1 answer


You need SonarQube to be installed and run on the same / different machine. also you need the SonarQube plugin in Jenkins which will connect SonarQube to save the results.

Sonar-runner will be the analyzer that will analyze your codebase. You need to install the sonar runner on your local machine and specify its path in the Jenkins system configuration.



Below are screenshots for detailed purpose.

enter image description hereenter image description here

+4


source







All Articles