aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
blob: 08efff3ecf82630140881f0b5f370f220cc6208c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name := "tracing"
version in ThisBuild := {
  import sys.process._
  ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
}

scalaVersion := "2.12.3"

libraryDependencies ++= Seq(
  "com.pauldijou" %% "jwt-core" % "0.14.0",
  "com.typesafe.akka" %% "akka-http" % "10.0.10",
  "com.typesafe.akka" %% "akka-http-spray-json" % "10.0.10",
  "io.spray" %% "spray-json" % "1.3.3",
  "com.typesafe.akka" %% "akka-http-testkit" % "10.0.10" % "test",
  "org.scalatest" %% "scalatest" % "3.0.2" % "test",
)

fork in test := true