Sonarqube服务端
安装过程略不能用root账号启动,必须使用普通账号如esuser,启动后自动会启动一个Elasticsearch实例(Elasticsearch实例在Sonarqube安装包里有自带的),如果误用root账号启动过sonar,则需要删除Sonarqube下的temp文件夹,否则一直会无法启动启动完成后,输入地址http://localhost:9000 可以看到控制台界面。
Sonar Maven设置
在Maven的setting.xml配置文件中的profiles标签下添加Sonarqube的地址:
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>
http://192.168.17.137:9000
</sonar.host.url>
</properties>
</profile>
项目依赖
在研发项目/模块的pom文件中,添加Sonar Maven插件,在build/plugins标签下
<build>
<plugins>
<plugin>
<groupId&g