代码质量管理开源平台Sonar

[b]文章已迁移到新地址[/b]

[url]http://blog.dinghz.com/2016/01/05/sonar.html[/url]

[b]Sonar官网[/b]

[url]http://www.sonarqube.org/[/url]

[b]Sonar介绍[/b]

Sonar (SonarQube)是一个开源平台,用于管理源代码的质量。Sonar 不只是一个质量数据报告工具,更是代码质量管理平台。支持的语言包括:Java、PHP、C#、C、Cobol、PL/SQL、Flex 等。
[b]Sonar数据库创建[/b]


CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'sonar' IDENTIFIED BY 'sonar';
GRANT ALL ON sonar.* TO 'sonar'@'%' IDENTIFIED BY 'sonar';
GRANT ALL ON sonar.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';


[b]Sonar数据库配置[/b]

配置文件:${SONAR_HOME}/conf/sonar.properties


sonar.jdbc.username=sonar
sonar.jdbc.password=sonar
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance


[b]中文语言包[/b]

[url]https://github.com/SonarQubeCommunity/sonar-l10n-zh[/url]

maven package


通过maven对sonar-l10n-zh项目进行打包,这里使用的是1.9-SNAPSHOT版本,生成的jar包是sonar-l10n-zh-plugin-1.9-SNAPSHOT.jar,将sonar-l10n-zh-plugin-1.9-SNAPSHOT.jar拷贝到${SONAR_HOME}/extensions/plugins/目录下
启动脚本

启动脚本在${SONAR_HOME}/bin/目录下,请自己选择相应的系统启动脚本进行运行
[b]Web界面地址[/b]

[url]http://127.0.0.1:9000/[/url]

[b]Sonar界面[/b]
[img]http://blog.dinghz.com/images/blogs/621FE648-9E8D-46C0-BA82-A177188F5704.png[/img]

[b]Demo工程[/b]

[url]https://github.com/craneding/sonar-test[/url]

这是我个人写的demo工程,具体的使用请看github的工程说明

你可能感兴趣的:(sonar)