aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorIsmael Juma <ismael@juma.me.uk>2011-05-29 19:52:20 +0100
committerIsmael Juma <ismael@juma.me.uk>2011-05-29 20:12:50 +0100
commit0c62ee43217900c8960411f0379a1351b87319b2 (patch)
tree1a4d740473fb575cae51503687bc1cc99541433b /project
parente3b323321d0313018e8d4c7363e621a5ed9b0d1a (diff)
downloadspark-0c62ee43217900c8960411f0379a1351b87319b2.tar.gz
spark-0c62ee43217900c8960411f0379a1351b87319b2.tar.bz2
spark-0c62ee43217900c8960411f0379a1351b87319b2.zip
Depend on jetty-server in compile scope and upgrade to 7.4.2.
As Matei described: "We're using Jetty to run an HTTP server, not to embed Spark in a webapp"
Diffstat (limited to 'project')
-rw-r--r--project/build/SparkProject.scala14
1 files changed, 6 insertions, 8 deletions
diff --git a/project/build/SparkProject.scala b/project/build/SparkProject.scala
index 10850dfaea..54a8219341 100644
--- a/project/build/SparkProject.scala
+++ b/project/build/SparkProject.scala
@@ -20,6 +20,9 @@ class SparkProject(info: ProjectInfo) extends ParentProject(info) with IdeaProje
trait BaseProject extends BasicScalaProject with ScalaPaths with BasicPackagePaths with Eclipsify with IdeaProject {
override def compileOptions = super.compileOptions ++ Seq(Unchecked)
+
+ lazy val jettyServer = "org.eclipse.jetty" % "jetty-server" % "7.4.2.v20110526"
+
override def packageDocsJar = defaultJarPath("-javadoc.jar")
override def packageSrcJar= defaultJarPath("-sources.jar")
lazy val sourceArtifact = Artifact.sources(artifactID)
@@ -38,21 +41,16 @@ class SparkProject(info: ProjectInfo) extends ParentProject(info) with IdeaProje
val asm = "asm" % "asm-all" % "3.3.1"
val scalaTest = "org.scalatest" % "scalatest" % "1.3" % "test"
val scalaCheck = "org.scala-tools.testing" %% "scalacheck" % "1.7" % "test"
- val jetty = jettyWebapp
}
- class ReplProject(info: ProjectInfo) extends DefaultProject(info) with BaseProject with DepJar with XmlTestReport {
- val jetty = jettyWebapp
- }
+ class ReplProject(info: ProjectInfo) extends DefaultProject(info) with BaseProject with DepJar with XmlTestReport
class ExamplesProject(info: ProjectInfo) extends DefaultProject(info) with BaseProject {
val colt = "colt" % "colt" % "1.2.0"
}
- class BagelProject(info: ProjectInfo) extends DefaultProject(info) with BaseProject with DepJar with XmlTestReport {
- val jetty = jettyWebapp
- }
-
+ class BagelProject(info: ProjectInfo) extends DefaultProject(info) with BaseProject with DepJar with XmlTestReport
+
}