Reputation: 6673
Can I use Play framework version 2.3.0 with scala 2.10.4?
I know that this version of Play has 2.11.1 by default by I have a lib with 2.10.4 support only.
I get errors like these:
[error] (*:update) sbt.ResolveException: unresolved dependency: com.typesafe.play#play_2.10;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play-iteratees_2.10;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play-test_2.10;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play-ws_2.10;2.3.0: not found
[error] unresolved dependency: com.typesafe.play#play-docs_2.10;2.3.0: not found
Upvotes: 4
Views: 1065
Reputation: 7877
There is currently a problem with the Typesafe repository (many developers have the same problem).
You can temporarily add this resolver in your Build.scala/build.sbt.
"Typesafe Maven Repository" at "http://repo.typesafe.com/typesafe/maven-releases/"
Upvotes: 4