Playframework – Unresolved Sedis Dependent with Redis Play-Plugin

I am using play framework v2.2.1 and include the following in the build.sbt file.

Parser:

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 to use and not use the sedis option in libraryDependencies. When I run the playback dependencies, I keep I received the following error:

sbt.ResolveException: unresolved dependency: org.sedis#sedis_2.10.0:1.1.1: not found

Any related failures Ideas to troubleshoot/solve this issue would be greatly appreciated. If not, I will continue with unmanaged dependencies.

Edit:
I forgot to mention that I also added the following in the play.plugins file Content:

play.plugins

550:com.typesafe.plugin.RedisPlugin

However, the problem is still unresolved.

I got it:
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/"

I am using play framework v2.2.1 and include the following in the build.sbt file.

Resolver:

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

libraryDependencies< /p>

"com.typesafe" %% "play-plugins-redis"% "2.1.1",
"org.sedis" %% "sedis"% " 1.1.8",

I tried to use and not to use the sedis option in libraryDependencies. When I run the playback dependency, 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/solving this issue would be greatly appreciated. If not, I will Continue with unmanaged dependencies.

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.

< p>I got it:
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/"

< /p>

Leave a Comment

Your email address will not be published.