Scala client added thanks to Alejanro Crosa

This commit is contained in:
antirez
2009-09-02 10:34:27 +02:00
parent 4563648714
commit 7c44bbb110
26 changed files with 1601 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import sbt._
class RedisClientProject(info: ProjectInfo) extends DefaultProject(info) with AutoCompilerPlugins
{
override def useDefaultConfigurations = true
val scalatest = "org.scala-tools.testing" % "scalatest" % "0.9.5" % "test->default"
val specs = "org.scala-tools.testing" % "specs" % "1.5.0"
val mockito = "org.mockito" % "mockito-all" % "1.7"
val junit = "junit" % "junit" % "4.5"
val sxr = compilerPlugin("org.scala-tools.sxr" %% "sxr" % "0.2.1")
}