Skip to content
Snippets Groups Projects
Commit 64936c14 authored by hyukjinkwon's avatar hyukjinkwon
Browse files

[SPARK-21903][BUILD][FOLLOWUP] Upgrade scalastyle-maven-plugin and scalastyle...

[SPARK-21903][BUILD][FOLLOWUP] Upgrade scalastyle-maven-plugin and scalastyle as well in POM and SparkBuild.scala

## What changes were proposed in this pull request?

This PR proposes to match scalastyle version in POM and SparkBuild.scala

## How was this patch tested?

Manual builds.

Author: hyukjinkwon <gurwls223@gmail.com>

Closes #19146 from HyukjinKwon/SPARK-21903-follow-up.
parent 16c4c03c
No related branches found
No related tags found
No related merge requests found
...@@ -2463,7 +2463,7 @@ ...@@ -2463,7 +2463,7 @@
<plugin> <plugin>
<groupId>org.scalastyle</groupId> <groupId>org.scalastyle</groupId>
<artifactId>scalastyle-maven-plugin</artifactId> <artifactId>scalastyle-maven-plugin</artifactId>
<version>0.9.0</version> <version>1.0.0</version>
<configuration> <configuration>
<verbose>false</verbose> <verbose>false</verbose>
<failOnViolation>true</failOnViolation> <failOnViolation>true</failOnViolation>
......
...@@ -123,7 +123,7 @@ object SparkBuild extends PomBuild { ...@@ -123,7 +123,7 @@ object SparkBuild extends PomBuild {
lazy val scalaStyleRules = Project("scalaStyleRules", file("scalastyle")) lazy val scalaStyleRules = Project("scalaStyleRules", file("scalastyle"))
.settings( .settings(
libraryDependencies += "org.scalastyle" %% "scalastyle" % "0.9.0" libraryDependencies += "org.scalastyle" %% "scalastyle" % "1.0.0"
) )
lazy val scalaStyleOnCompile = taskKey[Unit]("scalaStyleOnCompile") lazy val scalaStyleOnCompile = taskKey[Unit]("scalaStyleOnCompile")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment