weibo_kit/android/quality.gradle
沉默的湮灰 9514a79f6a
v2 (#22)
v2
2020-06-22 22:29:21 +08:00

18 lines
310 B
Dart

apply plugin: 'checkstyle'
check.dependsOn 'checkstyle'
checkstyle {
// toolVersion = "6.15"
}
task checkstyle(type: Checkstyle) {
configFile project.file('checkstyle.xml')
source 'src/main/java'
ignoreFailures false
showViolations true
include '**/*.java'
classpath = files()
}