Why are you using snapshot repository and old versions of casbah?
libraryDependencies ++= Seq( "org.mongodb" %% "casbah" % "2.4.1" ) resolvers += "typesafe" at "http://repo.typesafe.com/typesafe/releases/"
%% depending on the input will choose a configuration in the sbt scala version
There is a milestone for version 3.x
libraryDependencies ++= Seq( "org.mongodb" %% "casbah" % "3.0.0-M2" )
And as I recall, in 3.x the import should be changed to:
import com.mongodb.casbah._
source share