Unresolved Cedi dependency with redis plugin

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.

+4
source share
3 answers

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/"
+5

: play-plugins-redis 2.0 scala 2.9.1 Resolver, 2.1.1 . scala 2.10.0, sedis 1.1.8 Dependecies, 1.1.1 ....)

-, Resolver ( , , ):

Resolver.url("play-redis", url("http://repo.typesafe.com/typesafe/releases/"))(Resolver.ivyStylePatterns)

-, sedis scala 2.10, resolver:

Resolver.url("play-redis", url("http://pk11-scratch.googlecode.com/svn/trunk"))(Resolver.ivyStylePatterns)

-, sedis play-plugins-redis, ( , )

0

Source: https://habr.com/ru/post/1530462/


All Articles