-
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathbuild.sbt
27 lines (24 loc) · 1.01 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
name := "resy-booking-bot"
scalaVersion := "2.13.8"
ThisBuild / scalafixDependencies ++= Seq(
"com.github.vovapolu" %% "scaluzzi" % "0.1.23",
"org.scalatest" %% "autofix" % "3.1.0.1",
"com.eed3si9n.fix" %% "scalafix-noinfer" % "0.1.0-M1"
)
val root = Project("resy-booking-bot", file("."))
.settings(
semanticdbEnabled := true,
scalacOptions += "-Ywarn-unused",
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play-ahc-ws" % "2.8.18",
"com.github.pureconfig" %% "pureconfig" % "0.17.2",
"org.apache.logging.log4j" %% "log4j-api-scala" % "12.0",
"org.apache.logging.log4j" % "log4j-core" % "2.19.0" % Runtime,
"org.scalatest" %% "scalatest" % "3.2.15" % Test,
"org.mockito" % "mockito-core" % "5.1.1" % Test,
"org.slf4j" % "slf4j-nop" % "2.0.5"
// The above removes failed to load class warning
),
publish := {},
publishLocal := {}
)