Mikhail Golubtsov
Mikhail Golubtsov

Reputation: 6673

play 2.3.0 and Scala 2.10.4

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

Answers (1)

Julien Lafont
Julien Lafont

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

Related Questions