From 4927217f6dbdb564207c7b2edeea29bcb748940c Mon Sep 17 00:00:00 2001 From: David Czarnecki Date: Tue, 5 Jul 2011 21:56:48 -0400 Subject: [PATCH] Updating scala-redis to work with sbt 0.10.0 Adding build.sbt and changing build.properties --- build.sbt | 21 +++++++++++++++++++++ project/build.properties | 10 +--------- 2 files changed, 22 insertions(+), 9 deletions(-) create mode 100644 build.sbt diff --git a/build.sbt b/build.sbt new file mode 100644 index 00000000..74730df0 --- /dev/null +++ b/build.sbt @@ -0,0 +1,21 @@ +name := "RedisClient" + +version := "2.3.1" + +organization := "net.debasishg" + +scalaVersion := "2.9.0" + +libraryDependencies += "junit" % "junit" % "4.8.1" % "test" + +libraryDependencies += "log4j" % "log4j" % "1.2.16" + +libraryDependencies += "org.slf4j" % "slf4j-api" % "1.5.8" + +libraryDependencies += "org.slf4j" % "slf4j-log4j12" % "1.5.8" + +libraryDependencies += "commons-pool" % "commons-pool" % "1.5.5" % "compile" + +libraryDependencies += "org.scalatest" % "scalatest_2.9.0" % "1.6.1" % "test" + + diff --git a/project/build.properties b/project/build.properties index 476b494e..35e164f6 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1,9 +1 @@ -#Project properties -#Tue Mar 30 22:57:11 IST 2010 -project.organization=net.debasishg -project.name=RedisClient -sbt.version=0.7.6.RC0 -project.version=2.3.3 -def.scala.version=2.7.7 -build.scala.versions=2.9.0-1 -project.initialize=false +sbt.version=0.10.0