Sonarqube scan error with line out of range?(Sonarqube 扫描错误,行超出范围?)
问题描述
[07:43:57]W:[步骤 1/1] 错误:SonarQube 扫描仪执行期间出错
[07:43:57]W: [Step 1/1] ERROR: Error during SonarQube Scanner execution
[07:43:57]W:[Step 1/1] 错误:第 523 行超出文件范围src/main/java/com/company/package/File.java(行:522)
[07:43:57]W: [Step 1/1] ERROR: Line 523 is out of range in the file src/main/java/com/company/package/File.java (lines: 522)
由于某种原因,Sonarqube 在第 523 行报告错误,但源文件中只有 522 行?
For some reason Sonarqube is reporting an error on line 523 but there is only 522 lines in the source file ?
我在以前的文件中看到过这个,但是当我在它的末尾添加一个空行时问题就消失了,这个文件的末尾已经有一个空行.
I saw this on a previous file, but when I added a blank line to the end of it the problem went away, this file already has a blank line at the end of it.
推荐答案
我在使用 sonar maven 插件和 jacoco 测试报告时遇到了同样的问题.mvn sonar:sonar 依赖于现有的 jacoco 报告,当源代码被更改(行已被删除),但测试报告未更新时发生此错误.运行 mvn clean test sonar:sonar 解决了它.
I had the same issue when using sonar maven plugin and jacoco test reports. mvn sonar:sonar relies on an existintig jacoco report, when the source code was changed (lines had been removed), but the test report wasn't updated this error occurred. Running mvn clean test sonar:sonar solved it.
这篇关于Sonarqube 扫描错误,行超出范围?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Sonarqube 扫描错误,行超出范围?
基础教程推荐
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- Struts2 URL 无法访问 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
