问题标签 [sonarqube-web]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
login - 配置 SonarQube 5.4 以通过 Google 帐户登录
有没有办法通过 Google 帐户配置 SonarQube v5.4 登录?
我尝试了下面的解决方案,但没有成功。 https://github.com/SonarQubeCommunity/sonar-openid
svn - SonarQube 5.4 svn 提交行
在 SonarQube 5.4 中,是否可以从 svn 获取每个用户的提交次数以及谁引入了违规。
sonarqube - 删除已关闭的问题后,SonarQube 不会刷新?
将“设置>常规设置>常规>数据库清理器”下的“删除关闭的问题之后”和“每天只保留一个快照”配置为1后,重新运行分析。问题下的数字不正确。
有没有办法刷新或配置一些东西来确保数字是正确的?
谢谢!
这是示例。Unresolved中有16个问题。我检查了详细信息窗口中的所有问题,但只有 9 个问题。 点我看截图
sonarqube - 在 SonarQube 5.1.2 中使用 Web 服务 API 发布时“'资源'不被识别为内部或外部命令”
我在 Windows 7 Professional 上使用 SonarQube 5.1.2。我在 cURL 7.32.0 (x86_64-pc-win32) 上使用 Web 服务 API。我想使用 POST 为特定项目上传 sonar.exclusions 和更多此类属性。
我使用curl -u admin:admin -X POST http://localhost:9512/api/prop
erties/?id=sonar.exclusions -v -T "D:\sonar-exclusions.xml"
并且可以将其发布为全局 sonar.exclusions。
就好像我使用resource
命令将其发布到特定项目一样 -curl -u admin:admin -X POST http://localhost:9512/api/prop
erties/?id=sonar.exclusions&resource=org.myProject:myProject -v -T "D:\sonar-exclusions.xml"
我收到错误{"err_code":200,"err_msg":"property created"}'resource' is not识别为内部或外部命令,可操作程序或批处理文件
这里的resource
参数有什么问题?