I am using play framework v2.2.1 and have the following in the build.sbt file.
resolvers:
Resolver.url("play-redis", url("http://repo.typesafe.com/typesafe/releases/com/typesafe/play-plugins-redis_2.9.1/2.0/"))(Resolver.ivyStylePatterns),
libraryDependencies
"com.typesafe" %% "play-plugins-redis" % "2.1.1",
"org.sedis" %% "sedis" % "1.1.8",
I tried with and without the sedis option in libraryDependencies. When I run game dependencies, I keep getting the following error:
sbt.ResolveException: unresolved dependency: org.sedis#sedis_2.10.0:1.1.1: not found
Any ideas for troubleshooting / fixing this would be greatly appreciated. If not, I will just continue uncontrollable addiction.
Edit : I forgot to mention that I also added the following to the play.plugins file:
play.plugins
550:com.typesafe.plugin.RedisPlugin
However, the problem is still not resolved.
source
share