-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
21 lines (20 loc) · 881 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
val tapirVersion = "1.9.11"
lazy val rootProject = (project in file(".")).settings(
Seq(
name := "linguistic-nightingale",
version := "0.1.0-SNAPSHOT",
organization := "com.schemas",
scalaVersion := "2.13.13",
libraryDependencies ++= Seq(
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % tapirVersion,
"org.http4s" %% "http4s-ember-server" % "0.23.25",
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-bundle" % tapirVersion,
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
"io.circe" %% "circe-generic-extras" % "0.14.3",
"ch.qos.logback" % "logback-classic" % "1.5.3",
"com.softwaremill.sttp.tapir" %% "tapir-sttp-stub-server" % tapirVersion % Test,
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"com.softwaremill.sttp.client3" %% "circe" % "3.9.4" % Test
)
)
)