20 lines
409 B
Groovy
20 lines
409 B
Groovy
|
apply plugin: 'checkstyle'
|
||
|
|
||
|
tasks.withType(Checkstyle) {
|
||
|
ignoreFailures = true
|
||
|
reports {
|
||
|
xml.getRequired().set(true)
|
||
|
html.getRequired().set(true)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
checkstyle {
|
||
|
toolVersion = '10.4'
|
||
|
configFile = rootProject.file('gradle/quality/checkstyle.xml')
|
||
|
ignoreFailures = true
|
||
|
showViolations = false
|
||
|
checkstyleMain {
|
||
|
source = sourceSets.main.allSource
|
||
|
}
|
||
|
}
|