-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
33 lines (31 loc) · 1.6 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
val CatsEffectTestingScalaTestVersion = "1.4.0"
val Http4sVersion = "0.23.12"
val Mongo4catsVersion = "0.4.8"
val LogbackVersion = "1.2.11"
val MunitCatsEffectVersion = "1.0.6"
val ScalaTestVersion = "3.2.12"
val TypesafeConfig = "1.4.2"
val WeaverVersion = "0.7.12"
Test / parallelExecution := false
lazy val root = (project in file("."))
.settings(
organization := "io.sdkman",
name := "version-registry",
version := "0.0.1-SNAPSHOT",
scalaVersion := "3.1.3",
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-ember-server" % Http4sVersion,
"org.http4s" %% "http4s-ember-client" % Http4sVersion,
"org.http4s" %% "http4s-circe" % Http4sVersion,
"org.http4s" %% "http4s-dsl" % Http4sVersion,
"com.typesafe" % "config" % TypesafeConfig,
"io.github.kirill5k" %% "mongo4cats-core" % Mongo4catsVersion,
"io.github.kirill5k" %% "mongo4cats-circe" % Mongo4catsVersion,
"org.scalatest" %% "scalatest" % ScalaTestVersion % Test,
"org.typelevel" %% "cats-effect-testing-scalatest" % CatsEffectTestingScalaTestVersion % Test,
"io.github.kirill5k" %% "mongo4cats-embedded" % Mongo4catsVersion % Test,
"com.disneystreaming" %% "weaver-cats" % WeaverVersion % Test,
"ch.qos.logback" % "logback-classic" % LogbackVersion
),
testFrameworks += new TestFramework("weaver.framework.CatsEffect")
)