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 扫描错误,行超出范围?


基础教程推荐
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 大摇大摆的枚举 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 从 python 访问 JVM 2022-01-01