scala - Getting the error "play-iteratees_2.10 not found" after adding the reactivemongo -


i've started learn reactivemongo creating simple scala project. started sbt. here build.sbt file:

name := "mongo-test"  version := "1.0"  scalaversion := "2.10.2"  librarydependencies ++= seq(     "org.reactivemongo" %% "reactivemongo" % "0.9" ) 

but error when executing compile command:

[info] resolving play#play-iteratees_2.10;2.1.0 ... [warn]  module not found: play#play-iteratees_2.10;2.1.0 [warn] ==== local: tried [warn]   /home/amir/.ivy2/local/play/play-iteratees_2.10/2.1.0/ivys/ivy.xml [warn] ==== public: tried [warn]   http://repo1.maven.org/maven2/play/play-iteratees_2.10/2.1.0/play-iteratees_2.10-2.1.0.pom [info] resolving org.fusesource.jansi#jansi;1.4 ... [warn]  :::::::::::::::::::::::::::::::::::::::::::::: [warn]  ::          unresolved dependencies         :: [warn]  :::::::::::::::::::::::::::::::::::::::::::::: [warn]  :: play#play-iteratees_2.10;2.1.0: not found [warn]  :::::::::::::::::::::::::::::::::::::::::::::: 

update: sbt version 0.13.0.

add build.sbt line:

resolvers += "typesafe repository releases" @ "http://repo.typesafe.com/typesafe/releases/" 

Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

java.util.scanner - How to read and add only numbers to array from a text file -

iphone - Three second countdown in cocos2d -