-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (22 loc) · 1.02 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name := """rest-api"""
organization := "com.dush"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.6"
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "5.0.0" % Test
libraryDependencies ++= Seq(
"org.scalatestplus.play" %% "scalatestplus-play" % "5.0.0" % Test,
// Enable reactive mongo for Play 2.8
"org.reactivemongo" %% "play2-reactivemongo" % "0.20.13-play28",
// Provide JSON serialization for reactive mongo
"org.reactivemongo" %% "reactivemongo-play-json-compat" % "1.0.1-play28",
// Provide BSON serialization for reactive mongo
"org.reactivemongo" %% "reactivemongo-bson-compat" % "0.20.13",
// Provide JSON serialization for Joda-Time
"com.typesafe.play" %% "play-json-joda" % "2.7.4",
)
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.dush.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.dush.binders._"