Search code examples
redisplayframework-2.2

trying to use redis plugin for play framework v2


I tried using the redis plugin from the following source with play framework v2.2.1 and received the error message copied below - any thoughts on troubleshooting this will be greatly appreciated.

Source:

https://github.com/typesafehub/play-plugins/tree/master/redis

Error:

sbt.ResolveException: unresolved dependency: com.typesafe#play-plugins-redis_2.1.0;2.0.4: not found

I added the following to build.sbt:

build.sbt:

"com.typesafe" %% "play-plugins-redis" % "2.0.4",

I also added the play.plugins file in the conf directory with the following:

550:com.typesafe.plugin.RedisPlugin

Solution

  • I'm using version 2.1.1 and it is working:

    "com.typesafe" %% "play-plugins-redis" % "2.1.1",