mirror of
https://github.com/RxReader/tencent_kit.git
synced 2025-05-31 07:26:53 +08:00
18 lines
310 B
Dart
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()
|
|
}
|