aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2017-01-15 18:45:10 -0800
committerJakob Odersky <jakob@odersky.com>2017-01-15 18:45:10 -0800
commit7be7de634492ccb3eca360d5d38d67f4e7f7e4e3 (patch)
tree3e1ea097324c84a27aafd6869fa9324c42daa482
parent59a725bba299758289241c04919c1e382790f9fa (diff)
downloadakka-serial-7be7de634492ccb3eca360d5d38d67f4e7f7e4e3.tar.gz
akka-serial-7be7de634492ccb3eca360d5d38d67f4e7f7e4e3.tar.bz2
akka-serial-7be7de634492ccb3eca360d5d38d67f4e7f7e4e3.zip
Upgrade 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 1b6262d..316e81c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,6 +1,6 @@
// Build settings
version in ThisBuild := ("git describe --always --dirty=-SNAPSHOT --match v[0-9].*" !!).tail.trim
-crossScalaVersions in ThisBuild := List("2.11.8", "2.12.0")
+crossScalaVersions in ThisBuild := List("2.11.8", "2.12.1")
scalaVersion in ThisBuild := crossScalaVersions.value.head
scalacOptions in ThisBuild ++= Seq(
"-deprecation",
diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index 4ba7c12..db6ae02 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.4.14"
- val akkaStream ="com.typesafe.akka" %% "akka-stream" % "2.4.14"
+ val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.4.16"
+ val akkaStream ="com.typesafe.akka" %% "akka-stream" % "2.4.16"
- val akkaTestKit = "com.typesafe.akka" %% "akka-testkit" % "2.4.14"
+ val akkaTestKit = "com.typesafe.akka" %% "akka-testkit" % "2.4.16"
val scalatest = "org.scalatest" %% "scalatest" % "3.0.1"
}