-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
34 lines (24 loc) · 1.06 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
29
30
31
32
33
34
name := """timesheets"""
organization := "com.codeflow"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.13.3"
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "5.0.0" % Test
libraryDependencies += "org.scalatestplus" %% "junit-4-13" % "3.2.2.0" % "test"
// Database setup
// https://www.playframework.com/documentation/2.8.x/Developing-with-the-H2-Database
libraryDependencies ++= Seq(
evolutions,
jdbc,
"com.h2database" % "h2" % "1.4.200",
"org.playframework.anorm" %% "anorm" % "2.6.8",
"org.postgresql" % "postgresql" % "42.2.18"
)
// Swagger
libraryDependencies += "com.github.dwickern" %% "swagger-play2.8" % "3.0.0"
libraryDependencies += "org.webjars" % "swagger-ui" % "3.43.0"
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "com.codeflow.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "com.codeflow.binders._"