Maven与Sonar配合使用

1、Sonar安装部署

下载地址:http://www.sonarqube.org/downloads/ 
http://dist.sonar.codehaus.org/sonarqube-4.5.4.zip 
下载: 
# wget http://dist.sonar.codehaus.org/sonarqube-4.5.4.zip 
解压安装: 
# unzip sonarqube-4.5.4.zip 
# mv sonarqube-4.5.4 sonarqube  
编辑 sonar 配置: 
# cd sonarqube/conf/ 
# vi sonar.properties 
sonar.jdbc.username=root 
sonar.jdbc.password=123456
#----- MySQL 5.x 
sonar.jdbc.url=jdbc:mysql://localhost:3306/sonarqube?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance  
sonar.web.host=0.0.0.0 
sonar.web.context=/sonarqube 
sonar.web.port=9090

浏览器中输入:http://192.168.10.50:9090/sonarqube/ 

下载soanr的中文插件
地址:http://docs.codehaus.org/display/SONAR/Plugin+Library

在这里有丰富的插件

 https://github.com/SonarQubeCommunity

http://mvnrepository.com/open-source/sonar-plugins
插件也可以从系统本身的插件库进行安装,在系统配置里可以进行安装
将down下来的中文包放到*/sonarqube-4.5.7\extensions\plugins,然后重新启动即可

2.在本地maven中配置sonar:打开setting.xml配置文件,在其中加入如下代码:


   sonar
   
      true
   
   
      jdbc:mysql://localhost:3306/sonarqube?useUnicode=true&characterEncoding=utf8
      com.mysql.jdbc.Driver
      root
      123456
      
      http://192.168.10.50:9090
   
3.运行项目pom文件,输入 clean install sonar:sonar

你可能感兴趣的:(Java)