etsy / sbt-checkstyle-plugin

SBT Plugin for Running Checkstyle on Java Sources
MIT License
32 stars 25 forks source link

Upgrade checkstyle version #31

Open rmcloughlin opened 6 years ago

rmcloughlin commented 6 years ago

This plugin uses checkstyle 6.15, released over 2 years ago. The current version is 8.8: https://github.com/checkstyle/checkstyle/releases

It would be great if this could be upgraded. The maven checkstyle makes it possible to choose the version of checkstyle at runtime: https://maven.apache.org/plugins/maven-checkstyle-plugin/examples/upgrading-checkstyle.html

SathOkh commented 5 years ago

You can override checkstyle versions used by the plugin by adding following line to your plugins.sbt configuration file: dependencyOverrides += "com.puppycrawl.tools" % "checkstyle" % "8.23"