SonarQube:自创建以来未进行任何分析。唯一可用的部分是配置
SonarQube: No analysis has been performed since creation. The only available section is the configuration
我是 SonarQube 新手。我正在 运行 通过 sonar-eclipse-plugin 在 eclipse 中进行分析。但是在远程服务器上,它显示:
No analysis has been performed since creation. The only available
section is the configuration
如何在服务器上查看分析结果?
这意味着您有 provisioned your project 能够在 Eclipse 中进行本地分析。
本地分析(就像 Eclipse 中发生的那样)不要将数据推送到服务器 - 它们习惯于 "preview"你的代码
定期分析 会将结果推送到服务器。你 运行 这样的分析与 Maven,SonarQube Runner,Ant,Gradle,Jenkins,...
因此,如果您想在 SonarQube Web 应用程序中查看结果,只需定期分析即可。一切都在 "Analyzing Source Code" documentation section.
中解释
我的场景:我在不同的项目密钥中分析了这个项目的一个 sub-module。错误是 sonar module already part of project
.
如何检测:我使用maven
声纳客户端,Reactor Summary
之前有一个INFO日志
[INFO] Analysis report uploaded in 35ms
[INFO] ANALYSIS SUCCESSFUL, you can browse http://localhost:32770/dashboard/index/test.test.test
[INFO] Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
[INFO] More about the report processing at http://localhost:32770/api/ce/task?id=AVoshDlt_7pTduMM9HHB
[INFO] Task total time: 13.621 s
只需转到More about the report processing
link,您就会找到原因。
我是 SonarQube 新手。我正在 运行 通过 sonar-eclipse-plugin 在 eclipse 中进行分析。但是在远程服务器上,它显示:
No analysis has been performed since creation. The only available section is the configuration
如何在服务器上查看分析结果?
这意味着您有 provisioned your project 能够在 Eclipse 中进行本地分析。
本地分析(就像 Eclipse 中发生的那样)不要将数据推送到服务器 - 它们习惯于 "preview"你的代码
定期分析 会将结果推送到服务器。你 运行 这样的分析与 Maven,SonarQube Runner,Ant,Gradle,Jenkins,...
因此,如果您想在 SonarQube Web 应用程序中查看结果,只需定期分析即可。一切都在 "Analyzing Source Code" documentation section.
中解释我的场景:我在不同的项目密钥中分析了这个项目的一个 sub-module。错误是 sonar module already part of project
.
如何检测:我使用maven
声纳客户端,Reactor Summary
[INFO] Analysis report uploaded in 35ms
[INFO] ANALYSIS SUCCESSFUL, you can browse http://localhost:32770/dashboard/index/test.test.test
[INFO] Note that you will be able to access the updated dashboard once the server has processed the submitted analysis report
[INFO] More about the report processing at http://localhost:32770/api/ce/task?id=AVoshDlt_7pTduMM9HHB
[INFO] Task total time: 13.621 s
只需转到More about the report processing
link,您就会找到原因。