We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35f05be commit dcd7673Copy full SHA for dcd7673
app/quality.gradle
@@ -18,7 +18,7 @@ task checkstyle(type: Checkstyle) {
18
reports {
19
html {
20
enabled true
21
- destination "${project.buildDir}/reports/checkstyle/checkstyle.html"
+ destination file("${project.buildDir}/reports/checkstyle/checkstyle.html")
22
}
23
24
@@ -36,10 +36,10 @@ task pmd(type: Pmd) {
36
xml.enabled = false
37
html.enabled = true
38
xml {
39
- destination "${project.buildDir}/reports/pmd/pmd.xml"
+ destination file("${project.buildDir}/reports/pmd/pmd.xml")
40
41
42
- destination "${project.buildDir}/reports/pmd/pmd.html"
+ destination file("${project.buildDir}/reports/pmd/pmd.html")
43
44
45
0 commit comments