Srinivasan
Srinivasan
Worked on Windows for me as well.
I have some pointers why this is happening, but cannot understand the full flow. ``` groovy GenerateCoverageReportTask xmlCoverageReport = project.tasks.add(name: 'coberturaXml', dependsOn: [ 'cleanTest', 'test' ], type: GenerateCoverageReportTask) { format...
Apparently just rewiring the dependency on build.gradle (on parent project) is all this workaround needs. ``` groovy coberturaXml.dependsOn cleanTest ```
Thanks! Would be nice to document this as a workaround, as this allows me to run _tasks_ under parent project thus people new to gradle don't get lost.