2021-05-12 14:32:11
快速搭建Sonar程式碼品質管理平台
2020-06-16 17:35:07
快速搭建Sonar程式碼品質管理平台
安裝
- 下載,直接解壓http://www.sonarqube.org/downloads/
- 新增mysql驅動至extensionsjdbc-drivermysql
- 建立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
- 登陸http://localhost: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 http://localhost:9000 --> <sonar.host.url> http://10.22.10.139:9000 </sonar.host.url> </properties> </profile> </profiles> </settings>
- 在pom.xml所在目錄執行maven命令:
mvn clean install mvn sonar:sonar
使用Ecplise外掛:
- 安裝,外掛地址:http://dist.sonar-ide.codehaus.org/eclipse/
- 設定外掛引數,設定sonar伺服器地址:
- 將本地專案與sonar平台關聯:
- 右鍵檢查程式碼品質:
設定Sonar、Jenkins進行持續審查 http://www.linuxidc.com/Linux/2016-08/133877.htm
sonarQube程式碼品質管理工具環境籌建筆記 http://www.linuxidc.com/Linux/2016-08/133878.htm
SonarQube程式碼品質管理平台安裝與使用 http://www.linuxidc.com/Linux/2016-08/133879.htm
Sonar 的詳細介紹:請點這裡
Sonar 的下載地址:請點這裡
本文永久更新連結地址:http://www.linuxidc.com/Linux/2016-08/134416.htm
相關文章