I am using play framework v2.2.1 and have the following in my 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 have tried with and without the sedis option in libraryDependencies. When I run play dependencies, I keep getting the following error:
sbt.ResolveException: unresolved dependency: org.sedis#sedis_2.10.0:1.1.1: not found
Any ideas on troubleshooting/fixing this will be greatly appreciated. If not, I will just go ahead with an unmanaged dependency.
Edit: I forgot to mention that I also added the following to my play.plugins file:
play.plugins
550:com.typesafe.plugin.RedisPlugin
However, the issue is still pending.
I got it working : In the build.sbt file :
libraryDependencies ++= Seq(
cache,
"com.typesafe" %% "play-plugins-redis" % "2.2.1"
)
resolvers += "Sedis repository" at "http://pk11-scratch.googlecode.com/svn/trunk/"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With