--- a/project/Build.scala Tue Aug 23 17:07:07 2011 -0400
+++ b/project/Build.scala Wed Aug 24 14:13:01 2011 -0400
@@ -4,13 +4,14 @@
object Dependencies {
val scalatest = "org.scalatest" % "scalatest_2.9.0" % "1.6.1" % "test"
+ val specs = "org.scala-tools.testing" % "specs_2.9.0-1" % "1.6.8" % "test"
val antiXML = "com.codecommit" %% "anti-xml" % "0.3-SNAPSHOT"
val dispatch = "net.databinder" %% "dispatch-http" % "0.8.4"
val unfiltered_filter = "net.databinder" %% "unfiltered-filter" % "0.4.1"
val unfiltered_jetty = "net.databinder" %% "unfiltered-jetty" % "0.4.1"
val unfiltered_scalate = "net.databinder" %% "unfiltered-scalate" % "0.4.1"
val unfiltered_json = "net.databinder" %% "unfiltered-json" % "0.4.1"
- val unfiltered_spec = "net.databinder" %% "unfiltered-spec" % "0.4.1"
+ val unfiltered_spec = "net.databinder" %% "unfiltered-spec" % "0.4.1" % "test"
val slf4jSimple = "org.slf4j" % "slf4j-simple" % "1.6.1"
val salat = "com.novus" %% "salat-core" % "0.0.8-SNAPSHOT"
}
@@ -25,7 +26,7 @@
organization := buildOrganization,
version := buildVersion,
scalaVersion := buildScalaVersion,
- parallelExecution in Test := true,
+ parallelExecution in Test := false,
scalacOptions ++= Seq("-deprecation", "-unchecked")
)
@@ -42,6 +43,7 @@
resolvers += ScalaToolsSnapshots,
resolvers += "repo.novus snaps" at "http://repo.novus.com/snapshots/",
libraryDependencies += scalatest,
+ libraryDependencies += specs,
libraryDependencies += unfiltered_spec,
// libraryDependencies += antiXML,
libraryDependencies += dispatch,