aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJohn St. John <jstjohn@users.noreply.github.com>2017-09-21 16:28:23 -0700
committerGitHub <noreply@github.com>2017-09-21 16:28:23 -0700
commit9b0bed19489dbbd59c52a77e9c0c080a880ca262 (patch)
tree74934c57133ada3cd84a5c8a702cdf2683e8881e /build.sbt
parent037f522caf47d70d674daba62b540a451542c64d (diff)
downloaddriver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.tar.gz
driver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.tar.bz2
driver-core-9b0bed19489dbbd59c52a77e9c0c080a880ca262.zip
Jstjohn/google stackdriver trace (#64)v1.0.1
Add app-level tracing to driver-core (https://www.pivotaltracker.com/story/show/151100422)
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt38
1 files changed, 23 insertions, 15 deletions
diff --git a/build.sbt b/build.sbt
index 87828d6..de163c4 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,24 +2,32 @@ import sbt._
import Keys._
lazy val akkaHttpV = "10.0.5"
+lazy val googleTraceV = "0.4.0"
lazy val core = (project in file("."))
.driverLibrary("core")
.settings(lintingSettings ++ formatSettings)
.settings(libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
- "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
- "com.pauldijou" %% "jwt-core" % "0.14.0",
- "org.scalatest" %% "scalatest" % "3.0.1" % "test",
- "org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
- "org.mockito" % "mockito-core" % "1.9.5" % "test",
- "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.9.1",
- "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
- "com.google.cloud" % "google-cloud-pubsub" % "0.17.2-alpha",
- "com.google.cloud" % "google-cloud-storage" % "1.6.0",
- "com.typesafe.slick" %% "slick" % "3.1.1",
- "com.typesafe" % "config" % "1.2.1",
- "com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
- "ch.qos.logback" % "logback-classic" % "1.1.3"
+ "com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
+ "com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV,
+ "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpV,
+ "com.pauldijou" %% "jwt-core" % "0.14.0",
+ "org.scalatest" %% "scalatest" % "3.0.1" % "test",
+ "org.scalacheck" %% "scalacheck" % "1.13.4" % "test",
+ "org.mockito" % "mockito-core" % "1.9.5" % "test",
+ "com.github.swagger-akka-http" %% "swagger-akka-http" % "0.9.1",
+ "com.amazonaws" % "aws-java-sdk-s3" % "1.11.26",
+ "com.google.cloud" % "google-cloud-pubsub" % "0.17.2-alpha",
+ "com.google.cloud" % "google-cloud-storage" % "1.6.0",
+ "com.typesafe.slick" %% "slick" % "3.1.1",
+ "com.typesafe" % "config" % "1.2.1",
+ "com.typesafe.scala-logging" %% "scala-logging" % "3.5.0",
+ "ch.qos.logback" % "logback-classic" % "1.1.3",
+ "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"
))