diff --git a/integration-test/dns-api-mesos/build.sbt b/integration-test/dns-api-mesos/build.sbt index 1547563b..0886abbe 100644 --- a/integration-test/dns-api-mesos/build.sbt +++ b/integration-test/dns-api-mesos/build.sbt @@ -4,7 +4,7 @@ resolvers += "Akka library repository".at("https://repo.akka.io/maven") name := "bootstrap-demo-dns-api" -scalaVersion := "2.13.13" +scalaVersion := "2.13.14" def akkaManagementVersion(version: String) = version.split('+')(0) diff --git a/integration-test/marathon-api-docker/build.sbt b/integration-test/marathon-api-docker/build.sbt index dca8b64c..404a0ada 100644 --- a/integration-test/marathon-api-docker/build.sbt +++ b/integration-test/marathon-api-docker/build.sbt @@ -2,7 +2,7 @@ import com.typesafe.sbt.packager.docker._ name := "bootstrap-demo-marathon-api-docker" -scalaVersion := "2.13.13" +scalaVersion := "2.13.14" enablePlugins(JavaServerAppPackaging) diff --git a/integration-test/marathon-api/build.sbt b/integration-test/marathon-api/build.sbt index 88b81a0a..f41e2f55 100644 --- a/integration-test/marathon-api/build.sbt +++ b/integration-test/marathon-api/build.sbt @@ -6,7 +6,7 @@ resolvers += "Akka library repository".at("https://repo.akka.io/maven") version := "0.1.0" -scalaVersion := "2.13.13" +scalaVersion := "2.13.14" val akkaManagementVersion = "1.5.2" diff --git a/native-image-tests/build.sbt b/native-image-tests/build.sbt index f863acf3..f0cb0405 100644 --- a/native-image-tests/build.sbt +++ b/native-image-tests/build.sbt @@ -2,7 +2,7 @@ name := "native-image-tests" version := "1.0" -scalaVersion := "2.13.13" +scalaVersion := "2.13.14" resolvers += "Akka library repository".at("https://repo.akka.io/maven") diff --git a/project/Dependencies.scala b/project/Dependencies.scala index ed23bdce..241f8c09 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -3,7 +3,7 @@ import Keys._ object Dependencies { - val Scala213 = "2.13.13" + val Scala213 = "2.13.14" val Scala3 = "3.3.3" val CrossScalaVersions = Seq(Scala213, Scala3) diff --git a/samples/akka-sample-cluster-kubernetes-scala/build.sbt b/samples/akka-sample-cluster-kubernetes-scala/build.sbt index 5b4bb691..0c16fe16 100644 --- a/samples/akka-sample-cluster-kubernetes-scala/build.sbt +++ b/samples/akka-sample-cluster-kubernetes-scala/build.sbt @@ -2,7 +2,7 @@ ThisBuild / organization := "com.lightbend" name := "akka-sample-cluster-kubernetes" -scalaVersion := "2.13.13" +scalaVersion := "2.13.14" lazy val akkaHttpVersion = "10.6.3" lazy val akkaVersion = "2.9.3" lazy val akkaManagementVersion = "1.5.2" @@ -42,5 +42,6 @@ libraryDependencies ++= { "com.typesafe.akka" %% "akka-actor-testkit-typed" % akkaVersion % Test, "com.typesafe.akka" %% "akka-http-testkit" % akkaHttpVersion % Test, "com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test, - "com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test) + "com.typesafe.akka" %% "akka-stream-testkit" % akkaVersion % Test + ) }