OnJava8-Examples/gradle/checkstyle.gradle
2016-11-15 15:11:16 -08:00

15 lines
280 B
Groovy

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