我正在尝试将sonar集成到我的应用程序中,在此之前我试图看到在我在Github上找到的测试项目上运行它的分析。我能够通过./gradlew sonarRunner
我看到/sonar-report.json
正在生成。如何在仪表板中查看此报告?
我尝试运行分析的项目可以在以下链接中找到:
https://github.com/sonar-intellij-plugin/android-studio-example-project
答案 0 :(得分:1)
要查看sonar-report.json,您应该在sonar-project.properties文件中添加以下行:
sonar.issuesReport.html.enable=true
sonar.issuesReport.json.enable=true
sonar.report.export.path=sonar-report.json
sonar.issuesReport.console.enable=true
sonar.analysis.mode=preview
然后它会生成一个带有json文件数据的html。