Bump checkstyle to 6.12.1

Makes the existing checks a lot better (we were on 5.x) and allows us to
add checks that require newer versions.
This commit is contained in:
Daniel Martí 2015-11-30 10:35:19 +01:00
parent b6654f5077
commit 4f34013885
2 changed files with 8 additions and 0 deletions

View File

@ -182,6 +182,10 @@ android {
}
}
checkstyle {
toolVersion = '6.12.1'
}
task checkstyle(type: Checkstyle) {
configFile file("${project.rootDir}/config/checkstyle/checkstyle.xml")
source 'src', 'test/src'

View File

@ -35,6 +35,10 @@ android {
}
checkstyle {
toolVersion = '6.12.1'
}
task checkstyle(type: Checkstyle) {
configFile file("${project.rootDir}/config/checkstyle/checkstyle.xml")
source 'src'