From a89f92fb4fb4977a0b6cacee42c8765faa918e37 Mon Sep 17 00:00:00 2001 From: William Billingsley <wbilling@une.edu.au> Date: Tue, 10 May 2022 13:16:32 +1000 Subject: [PATCH] Update to Scala 3.1.1, Akka 2.6.19 --- build.sbt | 12 ++++++------ project/build.properties | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 29a4222..fd9e444 100644 --- a/build.sbt +++ b/build.sbt @@ -1,17 +1,17 @@ lazy val root = (project in file(".")). settings( name := "cosc250assignment3", - version := "2021.0", - scalaVersion := "3.0.0-RC3" + version := "2022.0", + scalaVersion := "3.1.1" ) libraryDependencies ++= Seq( - ("com.typesafe.akka" % "akka-actor" % "2.6.14").cross(CrossVersion.for3Use2_13), - ("com.typesafe.akka" % "akka-actor-typed" % "2.6.14").cross(CrossVersion.for3Use2_13), - ("com.typesafe.akka" % "akka-stream" % "2.6.14").cross(CrossVersion.for3Use2_13), + ("com.typesafe.akka" % "akka-actor" % "2.6.19").cross(CrossVersion.for3Use2_13), + ("com.typesafe.akka" % "akka-actor-typed" % "2.6.19").cross(CrossVersion.for3Use2_13), + ("com.typesafe.akka" % "akka-stream" % "2.6.19").cross(CrossVersion.for3Use2_13), ) -libraryDependencies += "org.scalameta" %% "munit" % "0.7.25" % Test +libraryDependencies += "org.scalameta" %% "munit" % "0.7.29" % Test // We also need to register munit as a test framework in sbt so that "sbt test" will work and the IDE will recognise // tests diff --git a/project/build.properties b/project/build.properties index f0be67b..c8fcab5 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.5.1 +sbt.version=1.6.2 -- GitLab