-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
64 lines (47 loc) · 2 KB
/
build.sbt
File metadata and controls
64 lines (47 loc) · 2 KB
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
56
57
58
59
60
61
62
63
64
name := "final-project"
version := "0.1"
scalaVersion := "3.4.2"
scalacOptions ++= Seq(
"-new-syntax",
"-Xfatal-warnings",
"-deprecation"
)
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.4",
"org.http4s" %% "http4s-dsl" % "0.23.26",
"org.http4s" %% "http4s-ember-server" % "0.23.26",
"org.http4s" %% "http4s-circe" % "0.23.26",
"org.http4s" %% "http4s-ember-client" % "0.23.26",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-client" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-prometheus-metrics" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-bundle" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "1.10.8",
"com.softwaremill.sttp.tapir" %% "tapir-cats" % "1.10.8",
"org.flywaydb" % "flyway-core" % "8.5.12",
"org.tpolecat" %% "doobie-core" % "1.0.0-RC5",
"org.tpolecat" %% "doobie-hikari" % "1.0.0-RC5",
"org.tpolecat" %% "doobie-postgres" % "1.0.0-RC5",
"com.typesafe" % "config" % "1.4.3",
"io.circe" %% "circe-core" % "0.14.7",
"io.circe" %% "circe-generic" % "0.14.7",
"org.mindrot" % "jbcrypt" % "0.4",
("org.reactormonk" %% "cryptobits" % "1.3").cross(CrossVersion.for3Use2_13),
"ch.qos.logback" % "logback-classic" % "1.5.6",
"org.fusesource.jansi" % "jansi" % "1.18",
"javax.mail" % "mail" % "1.4.7",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.scalamock" %% "scalamock" % "6.0.0" % Test,
"org.typelevel" %% "cats-laws" % "2.12.0" % Test,
"org.typelevel" %% "discipline-scalatest" % "2.3.0" % Test,
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test
)
assembly / assemblyMergeStrategy := {
case PathList("META-INF", xs @ _*) => MergeStrategy.discard
case x =>
val oldStrategy = (assembly / assemblyMergeStrategy).value
oldStrategy(x)
}
Test / parallelExecution := false