aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJohn St John <johnthesaintjohn@gmail.com>2017-10-05 15:39:30 -0700
committerJohn St John <johnthesaintjohn@gmail.com>2017-10-05 15:39:30 -0700
commit84a67e00581aecb0a7d440a8730834944e4829eb (patch)
tree05e5b4fa2d0b1d907689e9610fa823c9e636c8bf /build.sbt
parentdb83f93f8e63211b538d371f83c780fc01239770 (diff)
downloaddriver-core-84a67e00581aecb0a7d440a8730834944e4829eb.tar.gz
driver-core-84a67e00581aecb0a7d440a8730834944e4829eb.tar.bz2
driver-core-84a67e00581aecb0a7d440a8730834944e4829eb.zip
cleanup logging, remove old tracing, use new tracing library
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt11
1 files changed, 2 insertions, 9 deletions
diff --git a/build.sbt b/build.sbt
index b95e1a5..2770f58 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,12 +2,12 @@ import sbt._
import Keys._
lazy val akkaHttpV = "10.0.10"
-lazy val googleTraceV = "0.5.0"
lazy val core = (project in file("."))
.driverLibrary("core")
.settings(lintingSettings ++ formatSettings)
.settings(libraryDependencies ++= Seq(
+ "xyz.driver" %% "tracing" % "0.0.2",
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
@@ -22,12 +22,5 @@ lazy val core = (project in file("."))
"com.typesafe.slick" %% "slick" % "3.2.1",
"com.typesafe" % "config" % "1.2.1",
"com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
- "ch.qos.logback" % "logback-classic" % "1.1.11",
- "com.google.cloud.trace" % "core" % googleTraceV,
- "com.google.cloud.trace" % "logging-service" % googleTraceV,
- "com.google.cloud.trace" % "trace-grpc-api-service" % googleTraceV,
- // the following version of netty boringssl (or maybe greater) is/was needed to avoid Jetty ALPN/NPN
- // config errors w/ SSL in google libs. Before removing test that tracing posts to google
- // in a service that uses this library.
- "io.netty" % "netty-tcnative-boringssl-static" % "2.0.3.Final"
+ "ch.qos.logback" % "logback-classic" % "1.1.11"
))