forked from openzipkin-contrib/brave-akka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (22 loc) · 934 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
27
28
name := "akka-tracing"
version := "1.0"
scalaVersion := "2.11.12"
val akkaVersion = "2.5.9"
val braveVersion = "4.12.0"
val zipkinReporterVersion = "2.2.3"
val scalaTestVersion = "3.0.4"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % akkaVersion,
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion,
"com.typesafe.akka" %% "akka-remote" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster" % akkaVersion,
"com.typesafe.akka" %% "akka-cluster-tools" % akkaVersion,
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test"
)
libraryDependencies ++= Seq(
"io.zipkin.brave" % "brave" % braveVersion,
"io.zipkin.brave" % "brave-instrumentation-jaxrs2" % braveVersion,
"io.zipkin.reporter2" % "zipkin-reporter" % zipkinReporterVersion,
"io.zipkin.reporter2" % "zipkin-sender-okhttp3" % zipkinReporterVersion
)
libraryDependencies += "org.scalatest" %% "scalatest" % scalaTestVersion % "test"