build.sbt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. // Unit testing frameworks
  7. libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.0.0" % "test"
  8. // Add the ScalaMock library (versions 4.0.0 onwards)
  9. //libraryDependencies += "org.scalamock" %% "scalamock" % "4.1.0" % Test
  10. // also add ScalaTest as a framework to run the tests
  11. //libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % Test
  12. // https://mvnrepository.com/artifact/org.mongodb.scala/mongo-scala-driver
  13. libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.4.0"
  14. // https://mvnrepository.com/artifact/com.github.fakemongo/fongo
  15. libraryDependencies += "com.github.simplyscala" %% "scalatest-embedmongo" % "0.2.4" % "test"
  16. // https://mvnrepository.com/artifact/org.webjars/angularjs
  17. libraryDependencies += "org.webjars" % "angularjs" % "1.6.10"
  18. // https://mvnrepository.com/artifact/org.webjars.bower/angular-resource
  19. libraryDependencies += "org.webjars.bower" % "angular-resource" % "1.6.9"
  20. // https://mvnrepository.com/artifact/org.webjars/angular-ui-bootstrap
  21. libraryDependencies += "org.webjars" % "angular-ui-bootstrap" % "2.5.0"
  22. // DOA
  23. // https://mvnrepository.com/artifact/com.mongodb.casbah/casbah-core
  24. //libraryDependencies += "com.github.salat" %% "salat" % "1.11.2"
  25. //libraryDependencies += "com.h2database" % "h2" % "1.4.196"
  26. //libraryDependencies += "org.hibernate.ogm" % "hibernate-ogm-core" % "5.0.0.Final"
  27. //libraryDependencies += "org.hibernate.ogm" % "hibernate-ogm-mongodb" % "5.0.0.Final"
  28. // Adds additional packages into Twirl
  29. //TwirlKeys.templateImports += "com.example.controllers._"
  30. // Adds additional packages into conf/routes
  31. // play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"