Skip to content

Commit

Permalink
publish redis plugin as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ph2734 committed Jul 5, 2012
1 parent 9028828 commit 1c1186e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 1 addition & 2 deletions dust/sample/project/plugins.sbt
Expand Up @@ -8,7 +8,6 @@ resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/release
resolvers += Resolver.url("Typesafe Ivy Snapshots Repository", url("http://repo.typesafe.com/typesafe/ivy-snapshots/"))(Resolver.ivyStylePatterns)

// The Dust plugin
addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.0-SNAPSHOT")
addSbtPlugin("com.typesafe" % "play-plugins-dust" % "1.4")

// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.0")
5 changes: 5 additions & 0 deletions redis/README.md
Expand Up @@ -50,8 +50,13 @@ pool.withJedisClient { client =>
# How to install

* add

play 2.0.1:
```"com.typesafe" %% "play-plugins-redis" % "2.0.1"``` to your dependencies

play 2.0.1:
```"com.typesafe" %% "play-plugins-redis" % "2.0.2"``` to your dependencies

* create a file called ```play.plugins``` in your ```app/conf``` directory

* add ```550:com.typesafe.plugin.RedisPlugin```
Expand Down
5 changes: 2 additions & 3 deletions redis/project/Build.scala
Expand Up @@ -3,7 +3,7 @@ import Keys._

object MinimalBuild extends Build {

lazy val buildVersion = "2.0.1"
lazy val buildVersion = "2.0.2"

lazy val typesafeSnapshot = "Typesafe Snapshots Repository" at "http://repo.typesafe.com/typesafe/snapshots/"
lazy val typesafe = "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
Expand All @@ -20,9 +20,8 @@ object MinimalBuild extends Build {
resolvers += repo,
resolvers += "Sedis" at "http://guice-maven.googlecode.com/svn/trunk",
javacOptions += "-Xlint:unchecked",
libraryDependencies += "play" %% "play" % buildVersion,
libraryDependencies += "biz.source_code" % "base64coder" % "2010-09-21",
libraryDependencies += "com.typesafe" %% "play-plugins-util" % buildVersion,
libraryDependencies += "com.typesafe" %% "play-plugins-util" % "2.0.3",
libraryDependencies += "org.sedis" %% "sedis" % "1.0.1"
)
}

0 comments on commit 1c1186e

Please sign in to comment.