Created
September 12, 2014 12:32
-
-
Save komuro-hiraku/aac550db057d47296c2c to your computer and use it in GitHub Desktop.
正常に解決できるRedisプラグインの設定
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name := """Play2MemcachedSample""" | |
version := "1.0-SNAPSHOT" | |
lazy val root = (project in file(".")).enablePlugins(PlayJava) | |
scalaVersion := "2.11.1" | |
// required to resolve `spymemcached`, the plugin's dependency. | |
//resolvers += "Spy Repository" at "http://files.couchbase.com/maven2" | |
resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe" | |
resolvers += "google-sedis-fix" at "http://pk11-scratch.googlecode.com/svn/trunk/" | |
libraryDependencies ++= Seq( | |
javaJdbc, | |
javaEbean, | |
cache, | |
javaWs, | |
play.PlayImport.cache, | |
"com.typesafe" % "play-plugins-redis_2.10" % "2.1.1" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment