标签:质量 nis scanner search 巴巴 配置 ini instance standard
准备插件:
找到SonarQube版本对应的p3c插件
SonarQube7.6确认可用插件:https://github.com/caowenliang/sonar-pmd-p3c
下载插件代码并构建
>git clone https://github.com/caowenliang/sonar-pmd-p3c
>cd sonar-pmd-p3c
>mvn clean install -Dmaven.test.skip=true
>rm -f /opt/sonarqube/extensions/plugins/sonar-pmd*
>cp sonar-pmd-p3c/target/sonar-pmd-plugin-3.2.1.jar /opt/sonarqube/extensions/plugins
重启SonarQube,在Quality Profiles【质量配置】页面点击Create:
Name【名称】自己填
Language【语言】选Java,点击Create按钮后,跳转到质量配置详情界面。
在详情界面,点击Activate more【更多激活规则】,在Search for rules...【搜索规则...】中搜索p3c,然后点击Bulk Change【批量修改】,确认Apply。
返回到Quality Profiles【质量配置】页面,将该质量配置Set as Default【设为默认】。
官方
0. 准备token
访问SonarQube,点击Administration -> Security,将 Force user authentication 设置为true。点击左上角用户头像 -> Security,生成token
安装Sonar插件
SonarQube Scanner Plugin
配置SonarQube服务
进入Jenkins > 系统管理 > 系统设置 > SonarQube servers,点击Add SonarQube,
check Enable injection of SonarQube server configuration as build environment variables
name:自定义即可
ServerUrl:sonar服务地址
Server authentication token: 在sonar服务中生成的令牌token。注意:创建token时,需选择‘Secret Text‘认证.
配置 sonar-scanner,
进入 Jenkins > 系统管理 > Global Tool Configuration > 找到 SonarQube Scanner,如图??
4.1 配置 Job(基于Maven的 Java项目为例)
Configure the project, and go to the Build Environment section.
Enable Prepare SonarScanner environment to allow the injection of SonarQube server values into this particular job. If multiple SonarQube instances are configured, you will be able to choose which one to use. Once the environment variables are available, use them in a standard Maven build step (Invoke top-level Maven targets) by setting the Goals to include, or a standard Gradle build step (Invoke Gradle script) by setting the Tasks to execute.
4.2 配置 Job(前端项目为例)
标签:质量 nis scanner search 巴巴 配置 ini instance standard
原文地址:https://www.cnblogs.com/liuyitan/p/13160755.html