即使按照确切的说明进行操作,也无法将 Jedis 模块添加到 Play 2.4.1
Unable to add Jedis module to Play 2.4.1 even though following the exact instructions
我正在按照 https://github.com/typesafehub/play-plugins/tree/master/redis#how-to-install 上的说明进行操作。
我编译的时候说插件不存在...我做错了什么...
添加插件后我的build.sbt:
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"com.typesafe" %% "play-modules-redis" % "2.4.1"
)
Redis README.md
指令指向错误的组 ID。你需要这个:
"com.typesafe.play.modules" %% "play-modules-redis" % "2.4.0"
您可能还需要添加此解析器:
resolvers += "google-sedis-fix" at "http://pk11-scratch.googlecode.com/svn/trunk"
我刚刚在 vanilla Play 2.4 上试过这个,依赖性现在已经解决了。
我正在按照 https://github.com/typesafehub/play-plugins/tree/master/redis#how-to-install 上的说明进行操作。
我编译的时候说插件不存在...我做错了什么...
添加插件后我的build.sbt:
libraryDependencies ++= Seq(
javaJdbc,
cache,
javaWs,
"com.typesafe" %% "play-modules-redis" % "2.4.1"
)
Redis README.md
指令指向错误的组 ID。你需要这个:
"com.typesafe.play.modules" %% "play-modules-redis" % "2.4.0"
您可能还需要添加此解析器:
resolvers += "google-sedis-fix" at "http://pk11-scratch.googlecode.com/svn/trunk"
我刚刚在 vanilla Play 2.4 上试过这个,依赖性现在已经解决了。