Skip to content

Commit f92c942

Browse files
authored
Merge pull request #147 from CristianGM/patch-1
Fix CoverageFileName
2 parents 6d42357 + ecbdddd commit f92c942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/org/scoverage/ScoveragePlugin.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class ScoveragePlugin implements Plugin<PluginAware> {
191191
}
192192
scalaCompileOptions.additionalParameters = parameters
193193
// the compile task creates a store of measured statements
194-
outputs.file(new File(extension.dataDir.get(), 'scoverage.coverage.xml'))
194+
outputs.file(new File(extension.dataDir.get(), 'scoverage.coverage'))
195195

196196
dependsOn project.configurations[CONFIGURATION_NAME]
197197
doFirst {

0 commit comments

Comments
 (0)