windows下搭建sonarqube环境及使用_努力搬砖的猪头的博客-优快云博客_sonarqube windows
上面这个讲了安装,下面是如何使用。
一、在自己的maven setting.xml文件 地址${MAVEN_HOME}/conf/setting.xml配置下面几行配置
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.jdbc.url>jdbc:mysql://localhost:3306/sonar</sonar.jdbc.url>
<sonar.jdbc.driver>com.mysql.jdbc.Driversonarsonar</sonar.jdbc.driver>
&