Created
September 7, 2015 11:39
-
-
Save Akii/ca8273f9d9412351e212 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 := """ua-http""" | |
version := "1.0-SNAPSHOT" | |
lazy val root = (project in file(".")).enablePlugins(PlayScala) | |
scalaVersion := "2.11.6" | |
libraryDependencies ++= Seq( | |
jdbc, | |
cache, | |
ws, | |
specs2 % Test, | |
"com.typesafe.slick" %% "slick" % "3.0.2", | |
"org.json4s" %% "json4s-jackson" % "3.2.11", | |
"com.github.tototoshi" %% "play-json4s-native" % "0.4.1" | |
) | |
resolvers += "scalaz-bintray" at "http://dl.bintray.com/scalaz/releases" | |
// Play provides two styles of routers, one expects its actions to be injected, the | |
// other, legacy style, accesses its actions statically. | |
routesGenerator := InjectedRoutesGenerator | |
fork in run := true | |
offline := true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment