Do I need sonar and sonar runner for Jenkins?

北城以北 提交于 2019-11-27 01:28:52

问题


I want to set up Sonar with Jenkins. But I'm not sure if the Sonar site describes two different ways to do this or if there are two necessary steps:

As far as I understood it, it's two different ways. If this is the case, what is the difference and what are the advantages and disadvantages (between the Sonar itself and Sonar runner)?


回答1:


If you want to analyse a project with SonarQube and Jenkins, here's what you need:

  • A SonarQube server up and running

  • A Jenkins server up and running with the SonarQube Scanner for Jenkins installed and configure to point to your SonarQube server

  • A job configured to run a SonarQube analysis on your project:

    • Using the default and standard SonarQube Scanner (suitable for most projects)

    • Using the SonarQube Scanner for MSBuild (for .NET solutions)

    • Using a post build action for Maven-based projects

Everything is described more in details on the SonarQube Scanner for Jenkins documentation page.



来源:https://stackoverflow.com/questions/13472283/do-i-need-sonar-and-sonar-runner-for-jenkins

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!