-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
36 lines (30 loc) · 1.12 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
35
import com.typesafe.sbt.packager.docker.DockerChmodType
ThisBuild / scalaVersion := "2.13.10"
ThisBuild / version := "0.3.0-SNAPSHOT"
Docker / daemonUserUid := None
Docker / daemonUser := "daemon"
Universal / javaOptions ++= Seq(
"-Dpidfile.path=/dev/null"
)
lazy val root = (project in file("."))
.enablePlugins(PlayScala, AshScriptPlugin)
.settings(
name := """omoiomoi""",
dockerExposedPorts += 9000,
dockerBaseImage := "amazoncorretto:11-alpine-jdk",
dockerChmodType := DockerChmodType.UserGroupWriteExecute,
libraryDependencies ++= Seq(
guice,
ws,
caffeine,
"com.github.tminglei" %% "slick-pg" % "0.22.1",
"org.playframework" %% "play-slick" % "6.1.0",
"org.playframework" %% "play-slick-evolutions" % "6.1.0",
"org.postgresql" % "postgresql" % "42.7.3",
"com.auth0" % "jwks-rsa" % "0.20.0",
"com.github.jwt-scala" %% "jwt-core" % "10.0.0",
"com.github.jwt-scala" %% "jwt-play" % "10.0.0",
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test
),
routesImport += "com.megafarad.omoiomoi.binders.CustomBinders._"
)