aboutsummaryrefslogtreecommitdiff
path: root/project/SparkBuild.scala
diff options
context:
space:
mode:
authorIsmael Juma <ismael@juma.me.uk>2011-07-15 03:38:25 +0100
committerIsmael Juma <ismael@juma.me.uk>2011-07-15 03:38:30 +0100
commitf686e3dacb02d42dd2bb9695a96cecd85786d7b5 (patch)
treeb78c3c6bb3f860d0717f1d29d6ba4776b40311c5 /project/SparkBuild.scala
parentcf8f5de61b74c05b53d6d6de12aaa580e9bba3c7 (diff)
downloadspark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.tar.gz
spark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.tar.bz2
spark-f686e3dacb02d42dd2bb9695a96cecd85786d7b5.zip
Initial work on converting build to SBT 0.10.1
Diffstat (limited to 'project/SparkBuild.scala')
-rw-r--r--project/SparkBuild.scala101
1 files changed, 101 insertions, 0 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
new file mode 100644
index 0000000000..b6191561a0
--- /dev/null
+++ b/project/SparkBuild.scala
@@ -0,0 +1,101 @@
+import sbt._
+import Keys._
+
+object SparkBuild extends Build {
+
+ lazy val root = Project("root", file("."), settings = sharedSettings) aggregate(core, repl, examples, bagel)
+
+ lazy val core = Project("core", file("core"), settings = coreSettings)
+
+ lazy val repl = Project("repl", file("repl"), settings = replSettings) dependsOn (core)
+
+ lazy val examples = Project("examples", file("examples"), settings = examplesSettings) dependsOn (core)
+
+ lazy val bagel = Project("bagel", file("bagel"), settings = bagelSettings) dependsOn (core)
+
+ def sharedSettings = Defaults.defaultSettings ++ Seq(
+ organization := "org.spark-project",
+ version := "version=0.4-SNAPSHOT",
+ scalaVersion := "2.9.0-1",
+ scalacOptions := Seq(/*"-deprecation",*/ "-unchecked"), // TODO Enable -deprecation and fix all warnings
+ unmanagedJars in Compile <<= baseDirectory map { base => (base ** "*.jar").classpath },
+ retrieveManaged := true,
+ transitiveClassifiers in Scope.GlobalScope := Seq("sources"),
+ libraryDependencies ++= Seq(
+ "org.eclipse.jetty" % "jetty-server" % "7.4.2.v20110526",
+ "org.scalatest" % "scalatest_2.9.0" % "1.4.1" % "test",
+ "org.scala-tools.testing" % "scalacheck_2.9.0" % "1.9" % "test"
+ )
+ )
+
+ val slf4jVersion = "1.6.1"
+
+ //FIXME DepJar and XmlTestReport
+ def coreSettings = sharedSettings ++ Seq(libraryDependencies ++= Seq(
+ "com.google.guava" % "guava" % "r09",
+ "log4j" % "log4j" % "1.2.16",
+ "org.slf4j" % "slf4j-api" % slf4jVersion,
+ "org.slf4j" % "slf4j-log4j12" % slf4jVersion,
+ "com.ning" % "compress-lzf" % "0.7.0",
+ "org.apache.hadoop" % "hadoop-core" % "0.20.2",
+ "asm" % "asm-all" % "3.3.1"
+ ))
+
+ //FIXME DepJar and XmlTestReport
+ def replSettings = sharedSettings ++ Seq(libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-compiler" % _))
+
+ def examplesSettings = sharedSettings ++ Seq(libraryDependencies += "colt" % "colt" % "1.2.0")
+
+ //FIXME DepJar and XmlTestReport
+ def bagelSettings = sharedSettings
+}
+
+// Project mixin for an XML-based ScalaTest report. Unfortunately
+// there is currently no way to call this directly from SBT without
+// executing a subprocess.
+//trait XmlTestReport extends BasicScalaProject {
+// def testReportDir = outputPath / "test-report"
+//
+// lazy val testReport = task {
+// log.info("Creating " + testReportDir + "...")
+// if (!testReportDir.exists) {
+// testReportDir.asFile.mkdirs()
+// }
+// log.info("Executing org.scalatest.tools.Runner...")
+// val command = ("scala -classpath " + testClasspath.absString +
+// " org.scalatest.tools.Runner -o " +
+// " -u " + testReportDir.absolutePath +
+// " -p " + (outputPath / "test-classes").absolutePath)
+// Process(command, path("."), "JAVA_OPTS" -> "-Xmx500m") !
+//
+// None
+// }.dependsOn(compile, testCompile).describedAs("Generate XML test report.")
+//}
+
+// Project mixin for creating a JAR with a project's dependencies. This is based
+// on the AssemblyBuilder plugin, but because this plugin attempts to package Scala
+// and our project too, we leave that out using our own exclude filter (depJarExclude).
+//trait DepJar extends AssemblyBuilder {
+// def depJarExclude(base: PathFinder) = {
+// (base / "scala" ** "*") +++ // exclude scala library
+// (base / "spark" ** "*") +++ // exclude Spark classes
+// ((base / "META-INF" ** "*") --- // generally ignore the hell out of META-INF
+// (base / "META-INF" / "services" ** "*") --- // include all service providers
+// (base / "META-INF" / "maven" ** "*")) // include all Maven POMs and such
+// }
+//
+// def depJarTempDir = outputPath / "dep-classes"
+//
+// def depJarOutputPath =
+// outputPath / (name.toLowerCase.replace(" ", "-") + "-dep-" + version.toString + ".jar")
+//
+// lazy val depJar = {
+// packageTask(
+// Path.lazyPathFinder(assemblyPaths(depJarTempDir,
+// assemblyClasspath,
+// assemblyExtraJars,
+// depJarExclude)),
+// depJarOutputPath,
+// packageOptions)
+// }.dependsOn(compile).describedAs("Bundle project's dependencies into a JAR.")
+//}