From 3a5917cc624dc227fec50cec5c87ffc8b3102cb7 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 20 May 2024 13:24:11 -0500 Subject: [PATCH 1/2] in build def, remove outdated comment --- build.sbt | 1 - 1 file changed, 1 deletion(-) diff --git a/build.sbt b/build.sbt index 770c0c283..73d93047b 100644 --- a/build.sbt +++ b/build.sbt @@ -255,7 +255,6 @@ lazy val zincTesting = (projectMatrix in internalPath / "zinc-testing") baseSettings, publish / skip := true, libraryDependencies ++= Seq(scalaCheck, scalatest, verify, sjsonnewScalaJson.value), - // scala-compiler depends on 1.x, but 2.x works too dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "2.3.0" ) .defaultAxes(VirtualAxis.jvm, VirtualAxis.scalaPartialVersion(scala212)) From 8f83476fb7063fcce09fcf5e4c4765cf584a5c69 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Mon, 20 May 2024 13:25:08 -0500 Subject: [PATCH 2/2] in build def, don't repeat scala-xml version number --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 73d93047b..872f67c6c 100644 --- a/build.sbt +++ b/build.sbt @@ -255,7 +255,7 @@ lazy val zincTesting = (projectMatrix in internalPath / "zinc-testing") baseSettings, publish / skip := true, libraryDependencies ++= Seq(scalaCheck, scalatest, verify, sjsonnewScalaJson.value), - dependencyOverrides += "org.scala-lang.modules" %% "scala-xml" % "2.3.0" + dependencyOverrides += scalaXml, ) .defaultAxes(VirtualAxis.jvm, VirtualAxis.scalaPartialVersion(scala212)) .jvmPlatform(scalaVersions = List(scala212, scala213))