Skip to content

Instantly share code, notes, and snippets.

@Akii
Created September 7, 2015 11:39
Show Gist options
  • Save Akii/ca8273f9d9412351e212 to your computer and use it in GitHub Desktop.
Save Akii/ca8273f9d9412351e212 to your computer and use it in GitHub Desktop.
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