Ers
I'm having issues integrating ReactiveMongo on Play. My build.sbt
libraryDependencies ++= Seq( "org.reactivemongo" %% "play2-reactivemongo" % "0.9" )
When I try to start the server using the play 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
To think what is going wrong is clear; he is looking for the Scala library version 2.9.2. I have no idea why SBT is looking for 2.9, I have 2.10 installed. I tried several cars.
$ 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:
Does anyone know how to solve this problem?
source share