| 123456789101112131415161718192021222324252627282930313233343536373839 |
- name := """recipes"""
- organization := "com.example"
- version := "1.0-SNAPSHOT"
- lazy val root = (project in file(".")).enablePlugins(PlayScala)
- scalaVersion := "2.12.4"
- // Unit testing frameworks
- libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "3.0.0" % "test"
- // Add the ScalaMock library (versions 4.0.0 onwards)
- //libraryDependencies += "org.scalamock" %% "scalamock" % "4.1.0" % Test
- // also add ScalaTest as a framework to run the tests
- //libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.4" % Test
- // https://mvnrepository.com/artifact/org.mongodb.scala/mongo-scala-driver
- libraryDependencies += "org.mongodb.scala" %% "mongo-scala-driver" % "2.4.0"
- // https://mvnrepository.com/artifact/com.github.fakemongo/fongo
- libraryDependencies += "com.github.simplyscala" %% "scalatest-embedmongo" % "0.2.4" % "test"
- // https://mvnrepository.com/artifact/org.webjars/angularjs
- libraryDependencies += "org.webjars" % "angularjs" % "1.6.10"
- // https://mvnrepository.com/artifact/org.webjars.bower/angular-resource
- libraryDependencies += "org.webjars.bower" % "angular-resource" % "1.6.9"
- // https://mvnrepository.com/artifact/org.webjars/angular-ui-bootstrap
- libraryDependencies += "org.webjars" % "angular-ui-bootstrap" % "2.5.0"
- // DOA
- // https://mvnrepository.com/artifact/com.mongodb.casbah/casbah-core
- //libraryDependencies += "com.github.salat" %% "salat" % "1.11.2"
- //libraryDependencies += "com.h2database" % "h2" % "1.4.196"
- //libraryDependencies += "org.hibernate.ogm" % "hibernate-ogm-core" % "5.0.0.Final"
- //libraryDependencies += "org.hibernate.ogm" % "hibernate-ogm-mongodb" % "5.0.0.Final"
- // Adds additional packages into Twirl
- //TwirlKeys.templateImports += "com.example.controllers._"
- // Adds additional packages into conf/routes
- // play.sbt.routes.RoutesKeys.routesImport += "com.example.binders._"
|