aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2019-11-24 15:49:11 -0500
committerJakob Odersky <jakob@odersky.com>2019-11-24 15:49:11 -0500
commit857d88e1f9e8c357ed3747c9bc5c6343f35affa9 (patch)
tree07a2cecf2bca7b07538885c0a74037696c4d0bcf
parentfa4f0d2da682ae80b0b97a2e886c840db1120171 (diff)
downloadakka-serial-857d88e1f9e8c357ed3747c9bc5c6343f35affa9.tar.gz
akka-serial-857d88e1f9e8c357ed3747c9bc5c6343f35affa9.tar.bz2
akka-serial-857d88e1f9e8c357ed3747c9bc5c6343f35affa9.zip
upgrade Scala and dependencies
-rw-r--r--build.sbt2
-rw-r--r--project/Dependencies.scala6
2 files changed, 4 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index c20f294..c9e76d6 100644
--- a/build.sbt
+++ b/build.sbt
@@ -3,7 +3,7 @@ version in ThisBuild := {
import scala.sys.process._
("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
}
-crossScalaVersions in ThisBuild := List("2.13.0", "2.12.8", "2.11.12")
+crossScalaVersions in ThisBuild := List("2.13.1", "2.12.10")
scalaVersion in ThisBuild := crossScalaVersions.value.head
scalacOptions in ThisBuild ++= Seq(
"-deprecation",
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index ca2687b..2a8b958 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -4,10 +4,10 @@ import sbt._
object Dependencies {
- val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.5.23"
- val akkaStream ="com.typesafe.akka" %% "akka-stream" % "2.5.23"
+ val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.6.0"
+ val akkaStream ="com.typesafe.akka" %% "akka-stream" % "2.6.0"
- val akkaTestKit = "com.typesafe.akka" %% "akka-testkit" % "2.5.23"
+ val akkaTestKit = "com.typesafe.akka" %% "akka-testkit" % "2.6.0"
val scalatest = "org.scalatest" %% "scalatest" % "3.0.8"
}