diff --git a/build.sbt b/build.sbt index 6b3976f..4ee8188 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,14 @@ +name := "dispatch-lift-json" + +version := "0.8.8" + +organization := "net.databinder" + +scalaVersion := "2.9.2" + libraryDependencies ++= Seq( - "net.databinder" %% "dispatch-core" % "0.8.7", - "net.liftweb" %% "lift-json" % "2.4-RC1", - "net.databinder" %% "dispatch-http" % "0.8.7" % "test", - "org.scala-tools.testing" %% "specs" % "1.6.9" % "test" + "net.databinder" %% "dispatch-core" % "0.8.8", + "net.liftweb" % "lift-json_2.9.1" % "2.4", + "net.databinder" %% "dispatch-http" % "0.8.8" % "test", + "org.specs2" %% "specs2" % "1.12.2" % "test" ) diff --git a/src/test/scala/LiftJsonSpec.scala b/src/test/scala/LiftJsonSpec.scala index 1150993..7c4632c 100644 --- a/src/test/scala/LiftJsonSpec.scala +++ b/src/test/scala/LiftJsonSpec.scala @@ -1,4 +1,4 @@ -import org.specs._ +import org.specs2.mutable._ object LiftJsonSpec extends Specification { import dispatch._