Fixes #1472
This commit is contained in:
Vivek Maskara 2018-05-20 17:17:11 +05:30 committed by GitHub
commit 551512c599
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ task checkstyle(type: Checkstyle) {
reports {
html {
enabled true
destination "${project.buildDir}/reports/checkstyle/checkstyle.html"
destination file("${project.buildDir}/reports/checkstyle/checkstyle.html")
}
}
}
@ -36,10 +36,10 @@ task pmd(type: Pmd) {
xml.enabled = false
html.enabled = true
xml {
destination "${project.buildDir}/reports/pmd/pmd.xml"
destination file("${project.buildDir}/reports/pmd/pmd.xml")
}
html {
destination "${project.buildDir}/reports/pmd/pmd.html"
destination file("${project.buildDir}/reports/pmd/pmd.html")
}
}
}