aboutsummaryrefslogtreecommitdiff
path: root/project/project
diff options
context:
space:
mode:
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")
- }
}