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()
|
|
}
|