aboutsummaryrefslogtreecommitdiff
path: root/project/project
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2015-04-07 12:37:33 -0700
committerReynold Xin <rxin@databricks.com>2015-04-07 12:37:33 -0700
commit12322159147581602978f7f5a6b33b887ef781a1 (patch)
treec3c0289147d9ffcef589a31f88da27e2aba789e8 /project/project
parent2c32bef1790dac6f77ef9674f6106c2e24ea0338 (diff)
downloadspark-12322159147581602978f7f5a6b33b887ef781a1.tar.gz
spark-12322159147581602978f7f5a6b33b887ef781a1.tar.bz2
spark-12322159147581602978f7f5a6b33b887ef781a1.zip
[SPARK-6750] Upgrade ScalaStyle to 0.7.
0.7 fixes a bug that's pretty useful, i.e. inline functions no longer return explicit type definition. Author: Reynold Xin <rxin@databricks.com> Closes #5399 from rxin/style0.7 and squashes the following commits: 54c41b2 [Reynold Xin] Actually update the version. 09c759c [Reynold Xin] [SPARK-6750] Upgrade ScalaStyle to 0.7.
Diffstat (limited to 'project/project')
-rw-r--r--project/project/SparkPluginBuild.scala16
1 files changed, 1 insertions, 15 deletions
diff --git a/project/project/SparkPluginBuild.scala b/project/project/SparkPluginBuild.scala
index 8863f272da..471d00bd82 100644
--- a/project/project/SparkPluginBuild.scala
+++ b/project/project/SparkPluginBuild.scala
@@ -24,20 +24,6 @@ import sbt.Keys._
* becomes available for scalastyle sbt plugin.
*/
object SparkPluginDef extends Build {
- lazy val root = Project("plugins", file(".")) dependsOn(sparkStyle, sbtPomReader)
- lazy val sparkStyle = Project("spark-style", file("spark-style"), settings = styleSettings)
+ lazy val root = Project("plugins", file(".")) dependsOn(sbtPomReader)
lazy val sbtPomReader = uri("https://github.com/ScrapCodes/sbt-pom-reader.git#ignore_artifact_id")
-
- // There is actually no need to publish this artifact.
- def styleSettings = Defaults.defaultSettings ++ Seq (
- name := "spark-style",
- organization := "org.apache.spark",
- scalaVersion := "2.10.4",
- scalacOptions := Seq("-unchecked", "-deprecation"),
- libraryDependencies ++= Dependencies.scalaStyle
- )
-
- object Dependencies {
- val scalaStyle = Seq("org.scalastyle" %% "scalastyle" % "0.4.0")
- }
}