Skip to content

Commit dcd7673

Browse files
author
Anubhav
committed
Deprecation removed
1 parent 35f05be commit dcd7673

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/quality.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ task checkstyle(type: Checkstyle) {
1818
reports {
1919
html {
2020
enabled true
21-
destination "${project.buildDir}/reports/checkstyle/checkstyle.html"
21+
destination file("${project.buildDir}/reports/checkstyle/checkstyle.html")
2222
}
2323
}
2424
}
@@ -36,10 +36,10 @@ task pmd(type: Pmd) {
3636
xml.enabled = false
3737
html.enabled = true
3838
xml {
39-
destination "${project.buildDir}/reports/pmd/pmd.xml"
39+
destination file("${project.buildDir}/reports/pmd/pmd.xml")
4040
}
4141
html {
42-
destination "${project.buildDir}/reports/pmd/pmd.html"
42+
destination file("${project.buildDir}/reports/pmd/pmd.html")
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)