Last Updated: February 25, 2016
·
2.303K
· mateusz

Redis with Scala and Play framework

According to documentation (https://github.com/typesafehub/play-plugins/tree/master/redis) Build.scala should point to version 2.2.0, but if we check exisiting versions (http://repo.typesafe.com/typesafe/releases/com/typesafe/play-plugins-redis_2.10/) it will be crystal clear that this version is (yet) missing. Okay, first things first, we downgrade to 2.1.1.

Now, the project won't be able to start becouse of lack of Sedis version... Oh, well. So, we change Build.scala once again:

val main = play.Project(appName, appVersion, appDependencies).settings(
    resolvers += "Sedis Repo" at "http://pk11-scratch.googlecode.com/svn/trunk/"
)

EDIT:
If you use build.sbt instead of Build.scala you have to write it like:

resolvers += "Sedis Repo" at "http://pk11-scratch.googlecode.com/svn/trunk/"