Repository: spark Updated Branches: refs/heads/master 16c4c03c7 -> 64936c14a
[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 <[email protected]> Closes #19146 from HyukjinKwon/SPARK-21903-follow-up. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/64936c14 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/64936c14 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/64936c14 Branch: refs/heads/master Commit: 64936c14a7ef30b9eacb129bafe6a1665887bf21 Parents: 16c4c03 Author: hyukjinkwon <[email protected]> Authored: Wed Sep 6 23:28:12 2017 +0900 Committer: hyukjinkwon <[email protected]> Committed: Wed Sep 6 23:28:12 2017 +0900 ---------------------------------------------------------------------- pom.xml | 2 +- project/SparkBuild.scala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/64936c14/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 09794c1..a051fea 100644 --- a/pom.xml +++ b/pom.xml @@ -2463,7 +2463,7 @@ <plugin> <groupId>org.scalastyle</groupId> <artifactId>scalastyle-maven-plugin</artifactId> - <version>0.9.0</version> + <version>1.0.0</version> <configuration> <verbose>false</verbose> <failOnViolation>true</failOnViolation> http://git-wip-us.apache.org/repos/asf/spark/blob/64936c14/project/SparkBuild.scala ---------------------------------------------------------------------- diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala index 20848f0..748b1c4 100644 --- a/project/SparkBuild.scala +++ b/project/SparkBuild.scala @@ -123,7 +123,7 @@ object SparkBuild extends PomBuild { lazy val scalaStyleRules = Project("scalaStyleRules", file("scalastyle")) .settings( - libraryDependencies += "org.scalastyle" %% "scalastyle" % "0.9.0" + libraryDependencies += "org.scalastyle" %% "scalastyle" % "1.0.0" ) lazy val scalaStyleOnCompile = taskKey[Unit]("scalaStyleOnCompile") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
