File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ import sbtunidoc.Plugin.UnidocKeys.unidocGenjavadocVersion
2828import com .typesafe .sbt .pom .{loadEffectivePom , PomBuild , SbtPomKeys }
2929import net .virtualvoid .sbt .graph .Plugin .graphSettings
3030
31+ import spray .revolver .RevolverPlugin ._
32+
3133object BuildCommons {
3234
3335 private val buildLocation = file(" ." ).getAbsoluteFile.getParentFile
@@ -151,7 +153,7 @@ object SparkBuild extends PomBuild {
151153 // Note ordering of these settings matter.
152154 /* Enable shared settings on all projects */
153155 (allProjects ++ optionallyEnabledProjects ++ assemblyProjects ++ Seq (spark, tools))
154- .foreach(enable(sharedSettings ++ ExludedDependencies .settings))
156+ .foreach(enable(sharedSettings ++ ExludedDependencies .settings ++ Revolver .settings ))
155157
156158 /* Enable tests settings for all projects except examples, assembly and tools */
157159 (allProjects ++ optionallyEnabledProjects).foreach(enable(TestSettings .settings))
Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.1")
2929
3030addSbtPlugin(" com.cavorite" % " sbt-avro" % " 0.3.2" )
3131
32+ addSbtPlugin(" io.spray" % " sbt-revolver" % " 0.7.2" )
33+
3234libraryDependencies += " org.ow2.asm" % " asm" % " 5.0.3"
3335
3436libraryDependencies += " org.ow2.asm" % " asm-commons" % " 5.0.3"
You can’t perform that action at this time.
0 commit comments