-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
26 lines (23 loc) · 844 Bytes
/
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
name := "akka-tracing-demo"
organization := "com.amdelamar"
version := "1.0"
scalaVersion := "2.13.2"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.6.5",
"com.typesafe.akka" %% "akka-stream" % "2.6.5",
"com.typesafe.akka" %% "akka-http" % "10.1.11",
"com.typesafe.play" %% "play-json" % "2.7.4",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.github.blemale" %% "scaffeine" % "3.1.0",
"io.kamon" %% "kamon-core" % "2.1.0",
"io.kamon" %% "kamon-status-page" % "2.1.0",
"io.kamon" %% "kamon-akka-http" % "2.1.0",
"io.kamon" %% "kamon-zipkin" % "2.1.0"
)
javaAgents += "io.kamon" % "kanela-agent" % "1.0.5"
lazy val root = (project in file("."))
.enablePlugins(JavaAppPackaging, JavaAgent)
.settings(
fork in run := true
)