Play 2.3.0 and Scala 2.10.4

Is it possible to use the framework version 2.3.0 with scala 2.10.4?

I know that this version of Play has 2.11.1 by default, I have lib with support only 2.10.4.

I get errors like this:

[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
+4
source share
1 answer

There is currently a problem with the Typesafe repository (many developers have the same problem ).

You can temporarily add this resolver to your Build.scala / build.sbt file.

"Typesafe Maven Repository" at "http://repo.typesafe.com/typesafe/maven-releases/"
+4
source

Source: https://habr.com/ru/post/1542826/


All Articles