快速搭建Sonar代码质量管理平台

快速搭建Sonar代码质量管理平台 安装

下载,直接解压

添加mysql驱动至\extensions\jdbc-driver\mysql\

创建mysql数据库和用户:10.22.10.139 db:sonar 用户名/密码:sonar/sonar

修改sonar.properties,注释掉默认的数据库配置,添加以下配置: #----- MySQL 5.x # Comment the embedded database and uncomment the following line to use MySQL sonar.jdbc.url=jdbc:mysql://10.22.10.139:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true

启动bin/sonar.sh start

登陆:9000/   用户名/密码:admin/admin

使用maven分析项目:

在Maven的settings.xml(全局配置文件,不是项目的pom.xml)中添加以下配置:

<settings> <profiles> <profile> <id>sonar</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <!-- Example for MySQL--> <sonar.jdbc.url> jdbc:mysql://10.22.10.139:3306/sonar?useUnicode=true&characterEncoding=utf8 </sonar.jdbc.url> <sonar.jdbc.username>sonar</sonar.jdbc.username> <sonar.jdbc.password>sonar</sonar.jdbc.password> <!-- Optional URL to server. Default value is :9000 --> <sonar.host.url> :9000 </sonar.host.url> </properties> </profile> </profiles> </settings>

在pom.xml所在目录运行maven命令:

mvn clean install mvn sonar:sonar 使用Ecplise插件:

安装,插件地址: 

设置插件参数,配置sonar服务器地址:

快速搭建Sonar代码质量管理平台

将本地项目与sonar平台关联:

快速搭建Sonar代码质量管理平台

右键检查代码质量:

快速搭建Sonar代码质量管理平台

配置Sonar、Jenkins进行持续审查

sonarQube代码质量管理工具环境筹建笔记

SonarQube代码质量管理平台安装与使用 

Sonar 的详细介绍请点这里
Sonar 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/15022.html