代码质量检查
sonar
<profiles>
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.jdbc.username>xxx</sonar.jdbc.username>
<sonar.jdbc.password>xxx</sonar.jdbc.password>
<sonar.host.url>http://10.0.5.127:9000</sonar.host.url>
<sonar.projectKey>${project.artifactId}</sonar.projectKey>
<sonar.projectName>${project.artifactId}</sonar.projectName>
</properties>
</profile>
</profiles>
- 必需只用jdk11,否则报错JAVA编译版本的问题
- sonarweb地址上必需有这个项目,可以新建,注意名字要一样
- 先idea去install到本地
- mvn sonar:sonar 执行
- 确保上面的pom.xml里面的activeByDefault=true
- 在sonarweb地址可以下载pdf报告