Sonar是开源的代码质量管理平台,它把代码质量相关软件集成到一起统一管 理,集成的软件如下:
CPD
Checkstyle
Clover
Cobertura
Findbugs
General
Google analytics
PMD
Squid
Surefire
我把安装过程记录下来.
1.环境准备如下
ubuntu8.04
jdk1.5
maven2.2(官方要求2.0.7以上)
mysql5.0
2.下载Sonar,到http://sonar.codehaus.org/下载最新版本,目前是1.9.2,下 载后解压即可
3.数据库配置
CREATE DATABASE sonar CHARACTER SET utf8 COLLATE utf8_general_ci;
grant all on sonar.* to sonar@'%' identified by 'sonar';
grant all on sonar.* to sonar@localhost identified by 'sonar';
flush privileges;
官方没有grant all on sonar.* to sonar@'%' identified by 'sonar'; 如果你想远程发布项目到sonar,那就需要加上这条
然后还要更改sonar的配置,在sonar的解压目录下打开 conf/sonar.properties,注掉如下内容(如果你没有mysql就可以不改动这个文件 ,sonar默认使用内嵌数据库derby)
#sonar.jdbc.url: jdbc:derby://localhost:1527/sonar;create=true
#sonar.jdbc.driverClassName: org.apache.derby.jdbc.ClientDriver
#sonar.jdbc.validationQuery: values (1)
去掉下面的注释
sonar.jdbc.url: jdbc:mysql://192.168.1.151:3306/sonar? useUnicode=true&characterEncoding=utf8
sonar.jdbc.driverClassName: com.mysql.jdbc.Driver
sonar.jdbc.validationQuery: select 1