2017-10-06 16 views
1

SonarQube 6.0を使用するにはopenclover 4.2.0を設定するのが難しいです。ここでSonarQubeがオープンカバレッジカバレッジレポートを表示していません

は、私がログに持っているものです:.javaファイルが見つからない理由を私は知らない

[INFO] [08:42:14.706] Sensor org.sonar.plugins.clover.CloverSensor 
[INFO] [08:42:14.707] 2/2 source files have been analyzed 
[INFO] [08:42:14.707] Parsing /workspace/topparent/biz/target/site/clover/clover.xml 
[WARN] [08:42:14.709] Resource /workspace/topparent/biz/src/main/java/biz/BizClass.java was not found. 
[WARN] [08:42:14.710] Resource /workspace/topparent/biz/src/main/java/integration/FirstClass.java was not found. 
[INFO] [08:42:14.711] Matched files in report : 0% 
[WARN] [08:42:14.711] 2 files in clover report did not match any file in SonarQube Index : /workspace/topparent/biz/src/main/java/biz/BizClass.java, /workspace/topparent/biz/src/main/java/integration/FirstClass.java, 
[INFO] [08:42:14.711] Sensor org.sonar.plugins.clover.CloverSensor (done) | time=5ms 

、パスが正しいです。私は、このためにカバレッジレポートが表示されないと思います。

Matched files in report : 0% 

なぜですか?

+0

クローバーレポートのパスが相対的なものか絶対的なものか。 –

+0

プロパティは次のように設定されている。この '-Dsonar.clover.reportPath =ターゲット/サイト/クローバー/ clover.xml' とclover.xmlのパスが絶対ある https://pastebin.com/5A4mGdwh –

+0

パスは、 _クローズド・レポート、ファイル、相対、または絶対? –

答えて

2

私がやっていた:

mvn clover:setup verify clover:aggregate clover:clover sonar:sonar -sonar.host.url=... 

を、私は2つの別々のコマンドにこれを破った:

mvn sonar:sonar -sonar.host.url=... 

その後、

mvn clover:setup verify clover:aggregate clover:clover 

そして、それが機能するようになりました。

Matched files in report : 100% 
関連する問題