From a5a7bdfd72c705bfe0076f0c0560898192d9d08b Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 17 Aug 2026 21:38:22 +0100 Subject: [PATCH] upgrade scala dependencies --- scala/build.sbt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scala/build.sbt b/scala/build.sbt index ef794ec85d..aa4bc1ac29 100644 --- a/scala/build.sbt +++ b/scala/build.sbt @@ -17,13 +17,13 @@ */ val foryVersion = "1.7.0-SNAPSHOT" -val scala213Version = "2.13.15" +val scala213Version = "2.13.18" val repositoryRoot = Def.setting((ThisBuild / baseDirectory).value.getParentFile) ThisBuild / apacheSonatypeProjectProfile := "fory" ThisBuild / version := foryVersion ThisBuild / scalaVersion := scala213Version -ThisBuild / crossScalaVersions := Seq(scala213Version, "3.3.1") +ThisBuild / crossScalaVersions := Seq(scala213Version, "3.3.8") val localForyResolver = sys.props @@ -68,8 +68,8 @@ lazy val foryScala = Project(id = "fory-scala", base = file("fory-scala")) Compile / javacOptions ++= Seq("--release", "8"), libraryDependencies ++= Seq( "org.apache.fory" % "fory-core" % foryVersion, - "org.scalatest" %% "scalatest" % "3.2.19" % Test, - "dev.zio" %% "zio" % "2.1.7" % Test, + "org.scalatest" %% "scalatest" % "3.2.20" % Test, + "dev.zio" %% "zio" % "2.1.26" % Test, ), ) @@ -85,7 +85,7 @@ lazy val foryJsonScala = Project(id = "fory-json-scala", base = file("fory-json- else Nil Seq( "org.apache.fory" % "fory-json" % foryVersion, - "org.scalatest" %% "scalatest" % "3.2.19" % Test, + "org.scalatest" %% "scalatest" % "3.2.20" % Test, ) ++ reflect }, )