Skip to content

Commit 2b21b28

Browse files
committed
remove deprecation warning
1 parent 90ed347 commit 2b21b28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ allprojects {
156156

157157
coveralls {
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

162162
task 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

0 commit comments

Comments
 (0)