我想在我的项目中同时使用 Gradle项目报告和jacoco插件。为了说明我遇到的问题,我在以下位置打开了 build.gradle: gradle-1.7-rc-1/samples/testing/jacoco/quickstart 并将其修改为:
apply plugin: "java"
apply plugin: "jacoco"
apply plugin: "project-report"
运行 gradle projectReport 然后给我错误:
gradle projR
:dependencyReport
:propertyReport
:taskReport FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':taskReport'.
> Could not determine the dependencies of task ':jacocoTestReport'.
任何关于如何让这两个插件一起玩得很好的建议都将不胜感激(注意,它们都彼此独立工作)。
谢谢