aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: b95e1a58b0176d531ca4097748e011034fd1d075 (plain) (blame)
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
29
30
31
32
33
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(
    "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.2" % "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.2",
    "com.amazonaws"                % "aws-java-sdk-s3"                 % "1.11.26",
    "com.google.cloud"             % "google-cloud-pubsub"             % "0.25.0-beta",
    "com.google.cloud"             % "google-cloud-storage"            % "1.7.0",
    "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"
  ))