aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorWeiqing Yang <yangweiqing001@gmail.com>2016-12-09 14:13:01 +0800
committerSean Owen <sowen@cloudera.com>2016-12-09 14:13:01 +0800
commit9338aa4f89821c5640f7d007a67f9b947aa2bcd4 (patch)
treeb30e195069b2b60f7ac49169c29a827a431138f2 /project
parent86a96034ccb47c5bba2cd739d793240afcfc25f6 (diff)
downloadspark-9338aa4f89821c5640f7d007a67f9b947aa2bcd4.tar.gz
spark-9338aa4f89821c5640f7d007a67f9b947aa2bcd4.tar.bz2
spark-9338aa4f89821c5640f7d007a67f9b947aa2bcd4.zip
[SPARK-18697][BUILD] Upgrade sbt plugins
## What changes were proposed in this pull request? This PR is to upgrade sbt plugins. The following sbt plugins will be upgraded: ``` sbteclipse-plugin: 4.0.0 -> 5.0.1 sbt-mima-plugin: 0.1.11 -> 0.1.12 org.ow2.asm/asm: 5.0.3 -> 5.1 org.ow2.asm/asm-commons: 5.0.3 -> 5.1 ``` ## How was this patch tested? Pass the Jenkins build. Author: Weiqing Yang <yangweiqing001@gmail.com> Closes #16223 from weiqingy/SPARK_18697.
Diffstat (limited to 'project')
-rw-r--r--project/plugins.sbt8
1 files changed, 4 insertions, 4 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 76597d2729..84d1239990 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,12 +1,12 @@
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.11.2")
-addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "4.0.0")
+addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.0.1")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.8.2")
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0")
-addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.11")
+addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.1.12")
addSbtPlugin("com.alpinenow" % "junit_xml_listener" % "0.5.1")
@@ -16,9 +16,9 @@ addSbtPlugin("com.cavorite" % "sbt-avro" % "0.3.2")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.8.0")
-libraryDependencies += "org.ow2.asm" % "asm" % "5.0.3"
+libraryDependencies += "org.ow2.asm" % "asm" % "5.1"
-libraryDependencies += "org.ow2.asm" % "asm-commons" % "5.0.3"
+libraryDependencies += "org.ow2.asm" % "asm-commons" % "5.1"
addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.7.11")