noveogroup / android-check

Static code analysis plugin for Android project. (Checkstyle, PMD)
Other
268 stars 67 forks source link

Upgrade checkstyle? #24

Closed damianflannery closed 7 years ago

damianflannery commented 8 years ago

CatchParameterName and SuppressionFilter are not supported in the checkstyle version declared in this project (6.10.1). https://github.com/noveogroup/android-check/blob/master/android-check-plugin/build.gradle#L10

The latest version of checkstyle is 6.19.

Is it possible to upgrade?

MatFl commented 8 years ago

You can do that on your own:

classpath('com.noveogroup.android:check:1.2.3') {
     exclude module: 'checkstyle'
}
classpath 'com.puppycrawl.tools:checkstyle:6.19'
smalichenko commented 7 years ago

Checkstyle has been updated to 7.6.1 version in 1.2.4 android-check release.