mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-11 01:10:32 +00:00
0c9666b733
Adapt checkstyle.xml to match the latest version, and remove a line break between imports which trigger a checkstyle volation.
29 lines
643 B
Groovy
29 lines
643 B
Groovy
apply plugin: 'checkstyle'
|
|
check.dependsOn 'checkstyle'
|
|
|
|
checkstyle {
|
|
toolVersion = '9.0.1'
|
|
}
|
|
|
|
task checkstyle(type: Checkstyle) {
|
|
description = "Check Java style with Checkstyle"
|
|
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
|
|
source = javaSources()
|
|
classpath = files()
|
|
ignoreFailures = true
|
|
}
|
|
|
|
def javaSources() {
|
|
def files = []
|
|
android.sourceSets.each { sourceSet ->
|
|
sourceSet.java.each { javaSource ->
|
|
javaSource.getSrcDirs().each {
|
|
if (it.exists()) {
|
|
files.add(it)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return files
|
|
}
|