added support for Redis based SortedSet persistence in Akka transactors

This commit is contained in:
Debasish Ghosh 2010-03-18 10:51:22 +05:30
parent 3010cd1aa2
commit 02e6f5895a
10 changed files with 404 additions and 21 deletions

View file

@ -240,7 +240,7 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) {
}
class AkkaRedisProject(info: ProjectInfo) extends DefaultProject(info) {
val redis = "com.redis" % "redisclient" % "1.1" % "compile"
val redis = "com.redis" % "redisclient" % "1.2-SNAPSHOT" % "compile"
override def testOptions = TestFilter((name: String) => name.endsWith("Test")) :: Nil
lazy val dist = deployTask(info, distPath) dependsOn(`package`) describedAs("Deploying")
}