Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Mark Casbah 2.2.0-M1
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan W. McAdams committed May 28, 2012
1 parent f386308 commit d6c4fb8
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions project/CasbahBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object CasbahBuild extends Build {

lazy val buildSettings = Seq(
organization := "org.mongodb",
version := "2.2.0-SNAPSHOT",
version := "2.2.0-M1",
crossScalaVersions := Seq("2.9.2", "2.9.1", "2.9.0-1", "2.9.0", "2.8.1")
)

Expand Down Expand Up @@ -36,10 +36,18 @@ object CasbahBuild extends Build {
libraryDependencies <<= (scalaVersion, libraryDependencies) { (sv, deps) =>
sv match {
case "2.9.2" =>
deps :+ ("org.scalaj" % "scalaj-collection_2.9.1" % "1.2")
deps :+ ("org.scalaj" % "scalaj-collection_2.9.1" % "1.2")
case x => {
deps :+ ("org.scalaj" %% "scalaj-collection" % "1.2")
}
}

},
libraryDependencies <<= (scalaVersion, libraryDependencies) { (sv, deps) =>
sv match {
case "2.9.2" =>
deps :+ ("org.scala-tools.time" % "time_2.9.1" % "0.5")
case x => {
deps :+ ("org.scalaj" %% "scalaj-collection" % "1.2")
deps :+ ("org.scala-tools.time" %% "time" % "0.5")
}
}
Expand Down Expand Up @@ -105,7 +113,7 @@ object CasbahBuild extends Build {

object Dependencies {

val mongoJavaDriver = "org.mongodb" % "mongo-java-driver" % "2.7.3"
val mongoJavaDriver = "org.mongodb" % "mongo-java-driver" % "2.8.0-SNAPSHOT"
val slf4j = "org.slf4j" % "slf4j-api" % "1.6.0"

val specs2 = "org.specs2" %% "specs2" % "1.5.1" % "provided"
Expand Down

0 comments on commit d6c4fb8

Please sign in to comment.