-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
55 lines (40 loc) · 1.5 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import play.sbt.PlayScala
name := "rr"
version := "0.0.1"
maintainer := "[email protected]"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
resolvers += Resolver.sonatypeRepo("snapshots")
scalaVersion := "2.12.11"
libraryDependencies += guice
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "4.0.3" % Test
libraryDependencies += "com.github.t3hnar" %% "scala-bcrypt" % "4.1"
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "42.1.4",
"io.getquill" %% "quill-jasync-postgres" % "3.6.1",
)
libraryDependencies ++= Seq(
"com.beachape" %% "enumeratum" % "1.6.0",
"com.beachape" %% "enumeratum-play" % "1.6.0",
"com.beachape" %% "enumeratum-quill" % "1.6.0",
)
libraryDependencies ++= Seq(
"org.flywaydb" %% "flyway-play" % "6.0.0"
)
libraryDependencies ++= Seq(
"com.lightbend.akka" %% "akka-stream-alpakka-sqs" % "2.0.1",
"com.typesafe.akka" %% "akka-stream" % "2.5.31",
"com.typesafe.akka" %% "akka-http" % "10.1.11"
)
libraryDependencies += "com.github.daddykotex" %% "courier" % "2.0.0"
libraryDependencies += "io.sentry" % "sentry-logback" % "4.3.0"
libraryDependencies += "com.nixxcode.jvmbrotli" % "jvmbrotli" % "0.2.0"
libraryDependencies += "com.github.andriykuba" % "scala-glicko2" % "1.0.1"
libraryDependencies ++= Seq(
"org.commonmark" % "commonmark" % "0.21.0",
"com.googlecode.owasp-java-html-sanitizer" % "owasp-java-html-sanitizer" % "20220608.1"
)
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-Xfatal-warnings",
)