Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions config/quality/quality.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ task checkstyle(type: Checkstyle, group: 'Verification', description: 'Runs code
reports {
xml.enabled = true
xml {
destination "$reportsDir/checkstyle/checkstyle.xml"
destination file("$reportsDir/checkstyle/checkstyle.xml")
}
}

Expand All @@ -57,10 +57,10 @@ task findbugs(type: FindBugs,
xml.enabled = true
html.enabled = false
xml {
destination "$reportsDir/findbugs/findbugs.xml"
destination file("$reportsDir/findbugs/findbugs.xml")
}
html {
destination "$reportsDir/findbugs/findbugs.html"
destination file("$reportsDir/findbugs/findbugs.html")
}
}

Expand All @@ -81,10 +81,10 @@ task pmd(type: Pmd, group: 'Verification', description: 'Inspect sourcecode for
xml.enabled = true
html.enabled = true
xml {
destination "$reportsDir/pmd/pmd.xml"
destination file("$reportsDir/pmd/pmd.xml")
}
html {
destination "$reportsDir/pmd/pmd.html"
destination file("$reportsDir/pmd/pmd.html")
}
}
}
}