aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJohn St. John <jstjohn@users.noreply.github.com>2017-10-05 16:10:49 -0700
committerGitHub <noreply@github.com>2017-10-05 16:10:49 -0700
commitb00892d723f6dedf50dc1c1fde7d443e9c3f9497 (patch)
tree6e71cdeccd66d305d752e8ecb6ef9522f07a04f6 /build.sbt
parentdb83f93f8e63211b538d371f83c780fc01239770 (diff)
parent2c9f274f961ba6b0af662752afc3c0ee99a475de (diff)
downloaddriver-core-b00892d723f6dedf50dc1c1fde7d443e9c3f9497.tar.gz
driver-core-b00892d723f6dedf50dc1c1fde7d443e9c3f9497.tar.bz2
driver-core-b00892d723f6dedf50dc1c1fde7d443e9c3f9497.zip
Merge pull request #72 from drivergroup/jstjohn/update-tracingv1.4.2v1.4.0
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"
))