File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ allprojects {
156156
157157coveralls {
158158 sourceDirs = files(subprojects. sourceSets. main. allSource. srcDirs). files. absolutePath
159- jacocoReportPath = " ${ buildDir} /reports/jacoco/test/jacocoRootReport.xml"
159+ jacocoReportPath = file( " ${ buildDir} /reports/jacoco/test/jacocoRootReport.xml" )
160160}
161161
162162task jacocoRootReport (type : org.gradle.testing.jacoco.tasks.JacocoReport ) {
@@ -168,7 +168,7 @@ task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
168168 html. enabled = true
169169 xml. enabled = true
170170 csv. enabled = false
171- xml. destination = " ${ buildDir} /reports/jacoco/test/jacocoRootReport.xml"
171+ xml. destination = file( " ${ buildDir} /reports/jacoco/test/jacocoRootReport.xml" )
172172 }
173173}
174174
You can’t perform that action at this time.
0 commit comments