19 lines
395 B
Groovy
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)
|
|
} |