I'm following the instructions on https://github.com/typesafehub/play-plugins/tree/master/redis#how-to-install.
When I compile, it says that the plugin doesn't exist... What am I doing wrong...
My build.sbt after adding the plugin:
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"com.typesafe" %% "play-modules-redis" % "2.4.1"
)
The Redis
README.md
instruction is pointing to the wrong group ID. You'll need this instead:and you'll probably need to add this resolver too:
I've just tried this with vanilla Play 2.4 and the dependency is now resolved.