2

When trying to do analysis of a project using the javascript 2.9 plugin (using SonarQube 5.2 and the MSBuild runner) I am getting the error on a file

ERROR: Error during Sonar runner execution [error]Caused by: org.sonar.squidbridge.api.AnalysisException: Unable to analyse file: C:/Builds/source/_work/thefile.js

I have tried uninstalling the javascript plugin, but that just moved the issues to the failure being on a CSS file, as in CSS reported issue

Anyone got a solution that does not involve unloading the javascript and css plugins?

4

1 に答える 1

1

ログには、有用な情報を含むいくつかのスタック トレースが含まれています。発生するエラーは、JavaScript プラグインではなく、SonarQube Web プラグインから発生します。この問題を追跡するために次のチケットを作成しました: https://jira.sonarsource.com/browse/SONARWEB-43

編集: SonarQube Web プラグインのこのバグにより、分析が完了しません。名前が「.html」で終わるすべてのファイルを分析することになっているため、Web プラグインは分析で自動的に呼び出されます。

考えられる回避策:

  • 次の設定で分析用のプラグインを無効にします。sonar.excludePlugins=web
  • 分析から html ファイルを除外する

http://docs.sonarqube.org/display/SONAR/Analysis+Parametersおよびhttp://docs.sonarqube.org/display/SONAR/SonarQube+Scanner+for+MSBuild+Configurationを参照してください。

于 2015-12-15T13:11:04.187 に答える