ers,
I am having troubles with integrating the ReactiveMongo within the Play framework. My build.sbt
libraryDependencies ++= Seq(
"org.reactivemongo" %% "play2-reactivemongo" % "0.9"
)
When I try to run the server with the play run command I get the following error:
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: org.reactivemongo#play2-reactivemongo_2.9.2;0.9: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
sbt.ResolveException: unresolved dependency: org.reactivemongo#play2-eactivemongo_2.9.2;0.9: not found
The think that goes wrong is clear; it is looking for the 2.9.2 Scala version of the library. I have no idea why SBT is looking for 2.9, I have 2.10 installed. I have tried on several machines.
$ scalac -version
Scala compiler version 2.10.2 -- Copyright 2002-2013, LAMP/EPFL
and
$ play
play! 2.1.3 (using Java 1.7.0_25 and Scala 2.10.0), http://www.playframework.org
Does anyone know how to solve this problem?