我正在Eclipse中开发一个新项目,我必须用SonarQube分析它。我在代码中做了很多修改并进行了分析,但我不喜欢SonarQube将所有结果存储在数据库中(它们是临时版本)。有没有别的选择?
我已经配置了我的pom文件像sonarQube official config:
<profile>
<id>sonar</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<sonar.host.url>
http://myserver:9000
</sonar.host.url>
</properties>
</profile>
它与Sonar连接并执行分析,但我在SonarQube中存储了大量无用的执行。
问候
1条答案
按热度按时间fykwrbwg1#
您可能会从SonarLint Eclipse插件中获得一些值:https://www.sonarlint.org/eclipse。
有了这个,你可以在提交一个完整的sonarqube扫描之前,先对本地更改进行验证。