【发布时间】:2023-03-21 11:26:01
【问题描述】:
我正在使用命令行中的 sonar-web-frontend-plugin 运行 SonarScanner,它会拾取文件并运行,然后我得到一个执行失败
ERROR: Error during SonarQube Scanner execution
java.lang.IllegalStateException: Report processing did not complete successfully
: FAILED
My sonar-project.properties look like this
# must be unique in a given SonarQube instance
sonar.projectKey=Test.UI
# this is the name displayed in the SonarQube UI
sonar.projectName=Test.UI
sonar.projectVersion=1.0
# Comma-separated paths to directories with sources (required)
sonar.sources=src/app
# exclude some files and folders (typically dependencies)
sonar.exclusions=bower_components/**/*, node_modules/**/*
# Encoding of the source files
sonar.sourceEncoding=UTF-8
【问题讨论】:
标签: sonarqube sonar-runner sonarqube-scan