import com.typesafe.config._ val conf = ConfigFactory.parseFile(new File("conf/application.conf")).resolve() name := conf.getString("app.name") version := conf.getString("app.version") lazy val root = (project in file(".")).enablePlugins(PlayJava, PlayEbean) scalaVersion := "2.11.6" libraryDependencies ++= Seq( javaJdbc, cache, javaWs, "org.webjars" %% "webjars-play" % "2.4.0-1", "com.innoq.webjars" % "innoq-styles" % "0.1.1", "innoq-basic-auth" % "innoq-basic-auth_2.11" % "1.0-SNAPSHOT" ) // Play provides two styles of routers, one expects its actions to be injected, the // other, legacy style, accesses its actions statically. routesGenerator := InjectedRoutesGenerator