Skip to content
This repository has been archived by the owner on Jul 1, 2022. It is now read-only.

Commit

Permalink
Fix deprecation warning for setDestination(Object) - will be removed …
Browse files Browse the repository at this point in the history
…in Gradle 5 (#224)
  • Loading branch information
alshopov authored and yurishkuro committed Jul 27, 2017
1 parent 3e8e32b commit 3a64c4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ task codeCoverageReport(type: JacocoReport, group: 'Coverage reports') {
reports {
html.enabled = true
xml.enabled = true
xml.destination = "${buildDir}/reports/jacoco/report.xml"
xml.destination = file("${buildDir}/reports/jacoco/report.xml")
}

afterEvaluate {
Expand Down

0 comments on commit 3a64c4b

Please sign in to comment.