1. 现象
maven 报错如下:
[INFO] Sensor JavaSquidSensor [java]
[INFO] Configured Java source version (sonar.java.source): 8
[INFO] JavaClasspath initialization
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary:
[INFO]
[INFO] mall-mall 0.0.1-SNAPSHOT ........................... FAILURE [ 8.921 s]
[INFO] mall-commons ....................................... SKIPPED
[INFO] mall-ware .......................................... SKIPPED
[INFO] mall-member ........................................ SKIPPED
[INFO] mall-coupon ........................................ SKIPPED
[INFO] mall-order ......................................... SKIPPED
[INFO] mall-product ....................................... SKIPPED
[INFO] renren-fast 3.0.0 .................................. SKIPPED
[INFO] renren-generator 1.0.0 ............................. SKIPPED
[INFO] mall-gateway ....................................... SKIPPED
[INFO] mall-third-party ................................... SKIPPED
[INFO] mall-search ........................................ SKIPPED
[INFO] mall-auth_server ................................... SKIPPED
[INFO] mall-cart .......................................... SKIPPED
[INFO] mall-seckill 0.0.1-SNAPSHOT ........................ SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 11.094 s
[INFO] Finished at: 2023-04-21T06:26:38Z
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184:sonar (default-cli) on project mall-mall: Your project contains .java files, please provide compiled classes with sonar.java.binaries property, or exclude them from the analysis with sonar.exclusions property. -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
[Pipeline] }
WARN: Unable to locate 'report-task.txt' in the workspace. Did the SonarScanner succeed?
[Pipeline] // withSonarQubeEnv
[Pipeline] }
[Pipeline] // withCredentials
[Pipeline] }
[Pipeline] // container
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // withEnv
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
ERROR: script returned exit code 1
Finished: FAILURE
2. 解决方法
原来是
mvn sonar:sonar -gs `pwd`/mvn_settings.xml -Dsonar.login=$SONAR_TOKEN
修改后文章来源:https://www.toymoban.com/news/detail-598940.html
mvn verify sonar:sonar -gs `pwd`/mvn_settings.xml -Dsonar.login=$SONAR_TOKEN
再次运行报错消失
文章来源地址https://www.toymoban.com/news/detail-598940.html
到了这里,关于Failed to execute goal org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184:sonar (default-cl的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!