From 93a021d98329e239da7aef38e7723781b52863b6 Mon Sep 17 00:00:00 2001 From: Raymond Dodge Date: Tue, 28 May 2024 10:55:07 -0400 Subject: [PATCH] [build] Update munit to 1.0.0 --- XmlParser/src/test/scala/OpmlXmlFactoryTest.scala | 10 ---------- build.sbt | 7 +------ 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/XmlParser/src/test/scala/OpmlXmlFactoryTest.scala b/XmlParser/src/test/scala/OpmlXmlFactoryTest.scala index 854489b..1c02976 100644 --- a/XmlParser/src/test/scala/OpmlXmlFactoryTest.scala +++ b/XmlParser/src/test/scala/OpmlXmlFactoryTest.scala @@ -173,11 +173,6 @@ final class OpmlXmlFactoryTest extends munit.FunSuite { | name.rayrobdod.stringContextParserCombinatorExample.xml.OpmlXmlFactory. | OutlineAttribute | | name.rayrobdod.stringContextParserCombinatorExample.xml.Opml.OutlineTag)* - | - |The following import might make progress towards fixing the problem: - | - | import munit.Clue.generate - | | compileErrors(""".stripMargin + "\"\"\"" + """xml"""".stripMargin + "\"\"\"\"" + """), | ^ |error: @@ -186,11 +181,6 @@ final class OpmlXmlFactoryTest extends munit.FunSuite { | name.rayrobdod.stringContextParserCombinatorExample.xml.OpmlXmlFactory. | OutlineAttribute | | name.rayrobdod.stringContextParserCombinatorExample.xml.Opml.OutlineTag)* - | - |The following import might make progress towards fixing the problem: - | - | import munit.Clue.generate - | | compileErrors(""".stripMargin + "\"\"\"" + """xml"""".stripMargin + "\"\"\"\"" + """), | ^ |""".stripMargin diff --git a/build.sbt b/build.sbt index ea76d2d..28e13dd 100644 --- a/build.sbt +++ b/build.sbt @@ -26,12 +26,7 @@ lazy val sharedSettings = Seq( ), autoAPIMappings := true, libraryDependencies += { - val version = (scalaBinaryVersion.value, crossVersion.value.asInstanceOf[Binary].prefix) match { - case (_, "native0.5_") => "1.0.0-M11" - case ("3", "native0.4_") => "1.0.0-M11" - case _ => "0.7.29" - } - "org.scalameta" %%% "munit" % version % Test, + "org.scalameta" %%% "munit" % "1.0.0" % Test, }, tpolecatExcludeOptions ++= Set( org.typelevel.scalacoptions.ScalacOptions.warnUnusedNoWarn,