build.sbt 918 B

12345678910111213141516171819202122232425
  1. name := """recipes"""
  2. organization := "com.example"
  3. version := "1.0-SNAPSHOT"
  4. lazy val root = (project in file(".")).enablePlugins(PlayScala)
  5. scalaVersion := "2.12.4"
  6. libraryDependencies += guice
  7. libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
  8. // https://mvnrepository.com/artifact/org.webjars/angularjs
  9. libraryDependencies += "org.webjars" % "angularjs" % "1.6.10"
  10. // https://mvnrepository.com/artifact/org.webjars.bower/angular-resource
  11. libraryDependencies += "org.webjars.bower" % "angular-resource" % "1.6.9"
  12. // https://mvnrepository.com/artifact/org.webjars/angular-ui-bootstrap
  13. libraryDependencies += "org.webjars" % "angular-ui-bootstrap" % "2.5.0"
  14. // Adds additional packages into Twirl
  15. //TwirlKeys.templateImports += "com.example.controllers._"
  16. // Adds additional packages into conf/routes
  17. // play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"