Last active
January 4, 2016 03:09
-
-
Save tototoshi/8559754 to your computer and use it in GitHub Desktop.
ガラパゴス化するbuild.sbt
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
libraryDependencies ++= Seq( | |
jdbc, | |
cache, | |
"org.scalikejdbc" %% "scalikejdbc" % "[1.7,)", // by scalikejdbc organization (@seratch, .....) | |
"org.scalikejdbc" %% "scalikejdbc-interpolation" % "[1.7,)", // by scalikejdbc organization | |
"org.scalikejdbc" %% "scalikejdbc-play-plugin" % "[1.7,)", // by scalikejdbc organization | |
"com.github.tototoshi" %% "play-flyway" % "1.0.1", // by me | |
"com.github.mumoshu" %% "play2-memcached" % "0.3.0.2", // by @mumoshu | |
"com.github.nscala-time" %% "nscala-time" % "0.6.0", // by nscala-time organization (@kmizu, @xuwei_k ...) | |
"jp.t2v" %% "play2-auth" % "0.11.0", // by @gakuzzzz | |
"jp.t2v" %% "play2-auth-test" % "0.11.0" % "test", // by @gakuzzzz | |
"postgresql" % "postgresql" % "9.1-901-1.jdbc4", | |
"org.scalatest" %% "scalatest" % "2.0" % "test" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment