123456789101112131415161718 |
- name := "play2-scala-anorm"
- version := "1.0-SNAPSHOT"
- scalaVersion := "2.11.7"
- lazy val root = (project in file(".")).enablePlugins(PlayScala)
- libraryDependencies ++= Seq(
- jdbc,
- "com.typesafe.play" %% "anorm" % "2.4.0",
- "mysql" % "mysql-connector-java" % "5.1.38")
- 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
|