Skip to content

Commit

Permalink
a minor correction in directory name in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chiradip committed Apr 10, 2014
1 parent f20426f commit 1fe12f9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ dependency. Users need not know about any special APIs but know about Redis comm
Philosophically converting CLI based interation or dynamic typed style into static is sort of like going backward.
This library preserves that dynamic nature of Redis protocol and CLI. It adds asynchronous behavior on top of it without altering Redis single-threaded behavior. That means - your Scala/Java application can do other stuffs while Redis is processing the command(s) sent to it, and once Redis sends the response back, the future gets returned and canbe used by the calling client.

To run the program quickly - do a git clone and change to directory com.chiradip.rediscl.RedisClient and run sbt - make sure you have sbt 0.12 or higher.
To run the program quickly - do a git clone and change to directory RedisClient and run sbt - make sure you have sbt 0.12 or higher.

run compile command from sbt shell

Expand Down
18 changes: 16 additions & 2 deletions build.sbt
@@ -1,9 +1,23 @@
name := "com.chiradip.rediscl.RedisClient"
name := "RedisClient"

organization := "com.chiradip.rediscl"

version := "0.8"

scalaVersion := "2.10.3"

libraryDependencies += "org.slf4j" % "slf4j-api" % "1.7.6"

libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.1"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.1"

credentials += Credentials("Sonatype Nexus Repository Manager", "nexus.scala-tools.org", "chiradip", "sonatype123")

publishTo := {
val nexus = "https://oss.sonatype.org/"
if (version.value.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
//Some("releases" at nexus + "service/local/staging/deploy/maven2")
Some("snapshots" at nexus + "content/repositories/snapshots")
}

0 comments on commit 1fe12f9

Please sign in to comment.