OnJava8-Examples/gradle/checkstyle.gradle
2016-11-09 15:00:05 -05:00

14 lines
279 B
Groovy

apply plugin: 'checkstyle'
checkstyle {
ignoreFailures = true
configFile = new File(rootProject.projectDir, 'sun_checks.xml')
sourceSets = [sourceSets.main]
}
tasks.withType(Checkstyle) {
reports {
xml.enabled = false
html.enabled = true
}
}