-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
31 lines (24 loc) · 883 Bytes
/
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
name := """play-slick-postgres"""
organization := "rs.novalite"
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayScala, SwaggerPlugin)
scalaVersion := "2.13.10"
libraryDependencies ++= Seq(
guice,
// Database
"com.typesafe.play" %% "play-slick" % "5.1.0",
"com.typesafe.play" %% "play-slick-evolutions" % "5.1.0",
"org.postgresql" % "postgresql" % "42.5.0",
// Security
"com.github.t3hnar" %% "scala-bcrypt" % "4.3.0",
// Swagger
"org.webjars" % "swagger-ui" % "4.15.0",
// Test
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test
)
// Adds additional packages into Twirl
//TwirlKeys.templateImports += "rs.novalite.controllers._"
// Adds additional packages into conf/routes
// play.sbt.routes.RoutesKeys.routesImport += "rs.novalite.binders._"
// Swagger
swaggerDomainNameSpaces := Seq("models", "dtos")