From 52616009da9f37be6f2fd2285eb602b04df96dee Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Mon, 5 Jul 2021 18:55:45 +0900 Subject: [PATCH] [SPARK-33996][BUILD][FOLLOW-UP] Match SBT's plugin checkstyle version to Maven's ### What changes were proposed in this pull request? This PR is a followup of https://github.com/apache/spark/pull/31019 that forgot to update SBT's to match. ### Why are the changes needed? To use the same version in both Maven and SBT. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? CI should test them. Closes #33207 from HyukjinKwon/SPARK-33996. Authored-by: Hyukjin Kwon Signed-off-by: Hyukjin Kwon (cherry picked from commit 2fe6c9454465fbac58ecb90bde6af42a489d8bbf) Signed-off-by: Hyukjin Kwon --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e733f864e6..9e86e32964 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -18,7 +18,7 @@ addSbtPlugin("com.etsy" % "sbt-checkstyle-plugin" % "3.1.1") // sbt-checkstyle-plugin uses an old version of checkstyle. Match it to Maven's. -libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "8.25" +libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "8.39" // checkstyle uses guava 23.0. libraryDependencies += "com.google.guava" % "guava" % "23.0"