-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
20 lines (18 loc) · 810 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ThisBuild / version := "0.1.0-SNAPSHOT"
ThisBuild / scalaVersion := "2.13.8"
lazy val root = (project in file("."))
.settings(
name := "trace4cats-iolocal-demo",
libraryDependencies ++= List(
"io.janstenpickle" %% "trace4cats-http4s-client" % "0.14.1",
"io.janstenpickle" %% "trace4cats-http4s-server" % "0.14.1",
"io.janstenpickle" %% "trace4cats-jaeger-thrift-exporter" % "0.14.0",
"io.janstenpickle" %% "trace4cats-core" % "0.14.6",
"io.janstenpickle" %% "trace4cats-iolocal" % "0.14.6",
"org.http4s" %% "http4s-ember-client" % "0.23.23",
"org.http4s" %% "http4s-ember-server" % "0.23.23",
"org.http4s" %% "http4s-circe" % "0.23.23",
"org.http4s" %% "http4s-dsl" % "0.23.23"
),
Compile / mainClass := Some("demo.fibonacci.Main")
)