aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@driver.xyz>2018-06-05 21:59:09 -0700
committerJakob Odersky <jakob@driver.xyz>2018-06-05 22:10:49 -0700
commit705e615fe0be55ea0116d2810d24a30cf11f24d3 (patch)
treeba2006311fa675021fc9fd42c820235518412204 /build.sbt
parent600db9b151154d3ee6e14eff3c0b9296a32a9d90 (diff)
downloadtracing-705e615fe0be55ea0116d2810d24a30cf11f24d3.tar.gz
tracing-705e615fe0be55ea0116d2810d24a30cf11f24d3.tar.bz2
tracing-705e615fe0be55ea0116d2810d24a30cf11f24d3.zip
Upgrade build and dependenciesv0.1.0
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt14
1 files changed, 8 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index 8085b79..dfa439d 100644
--- a/build.sbt
+++ b/build.sbt
@@ -4,16 +4,18 @@ version in ThisBuild := {
("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
}
-crossScalaVersions := Seq("2.11.11", "2.12.3")
+crossScalaVersions := Seq("2.11.12", "2.12.6")
scalaVersion := crossScalaVersions.value.last
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",
+ "com.pauldijou" %% "jwt-core" % "0.16.0",
+ "com.typesafe.akka" %% "akka-http" % "10.1.1",
+ "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.1",
+ "com.typesafe.akka" %% "akka-actor" % "2.5.13",
+ "com.typesafe.akka" %% "akka-stream" % "2.5.13",
"io.spray" %% "spray-json" % "1.3.3",
- "com.typesafe.akka" %% "akka-http-testkit" % "10.0.10" % "test",
- "org.scalatest" %% "scalatest" % "3.0.2" % "test",
+ "com.typesafe.akka" %% "akka-http-testkit" % "10.1.1" % "test",
+ "org.scalatest" %% "scalatest" % "3.0.5" % "test",
)
fork in test := true