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
@@ -149,7 +151,7 @@ object SparkBuild extends PomBuild {
149151 // Note ordering of these settings matter.
150152 /* Enable shared settings on all projects */
151153 (allProjects ++ optionallyEnabledProjects ++ assemblyProjects ++ Seq (spark, tools))
152- .foreach(enable(sharedSettings ++ ExludedDependencies .settings))
154+ .foreach(enable(sharedSettings ++ ExludedDependencies .settings ++ Revolver .settings ))
153155
154156 /* Enable tests settings for all projects except examples, assembly and tools */
155157 (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