-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
37 lines (37 loc) · 1.94 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
lazy val root = (project in file("."))
.enablePlugins(ScriptedPlugin)
.settings(
name := "api-template.g8",
test in Test := {
val _ = (g8Test in Test).toTask("").value
},
addCompilerPlugin("org.typelevel" %% "kind-projector" % "0.13.0" cross CrossVersion.full),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "2.5.3",
"org.http4s" %% "http4s-dsl" % "0.21.34",
"org.http4s" %% "http4s-blaze-server" % "0.21.34",
"com.softwaremill.sttp.tapir" %% "tapir-core" % "0.17.20",
"com.softwaremill.sttp.tapir" %% "tapir-http4s-server" % "0.17.20",
"com.softwaremill.sttp.tapir" %% "tapir-json-circe" % "0.17.20",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-docs" % "0.17.20",
"com.softwaremill.sttp.tapir" %% "tapir-openapi-circe-yaml" % "0.17.20",
"com.softwaremill.sttp.tapir" %% "tapir-swagger-ui-http4s" % "0.17.20",
"io.circe" %% "circe-generic" % "0.14.2",
"ch.qos.logback" % "logback-classic" % "1.2.13" % Runtime,
"com.codecommit" %% "cats-effect-testing-scalatest" % "0.5.4",
"org.http4s" %% "http4s-blaze-client" % "0.21.34",
"org.http4s" %% "http4s-circe" % "0.21.34",
"com.dimafeng" %% "testcontainers-scala-scalatest" % "0.41.3"
),
scriptedLaunchOpts ++= List(
"-Xms1024m",
"-Xmx1024m",
"-XX:ReservedCodeCacheSize=128m",
"-Xss2m",
"-Dfile.encoding=UTF-8"
),
resolvers += Resolver.url("typesafe", url("https://repo.typesafe.com/typesafe/ivy-releases/"))(
Resolver.ivyStylePatterns
)
)