OnJava8-Examples/gradle/checkstyle.gradle
2016-11-06 09:32:37 -05:00

19 lines
395 B
Groovy

apply plugin: 'checkstyle'
checkstyle {
ignoreFailures = true
configFile = new File(rootProject.projectDir, 'sun_checks.xml')
}
tasks.withType(Checkstyle) {
reports {
xml.enabled = false
html.enabled = true
}
}
task checkstyle {
group = 'Verification'
description = 'Runs Checkstyle analysis for all classes.'
dependsOn tasks.withType(Checkstyle)
}