From 6c9d3a17169892f9c1f907d1820f1d2b2af76fb5 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Thu, 23 May 2024 18:33:01 +0000 Subject: [PATCH] Update munit to 1.0.0 --- build.sbt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 3d20a3f..94218b0 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ ThisBuild / versionScheme := Some("early-semver") ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible ThisBuild / versionPolicyIgnoredInternalDependencyVersions := Some( "^\\d+\\.\\d+\\.\\d+\\+\\d+".r -) +) lazy val commonSettings = Seq( scalaVersion := "2.13.8", @@ -95,7 +95,7 @@ lazy val core = (project in file("core")) .settings( name := "pairwisealignment", libraryDependencies ++= Seq( - "org.scalameta" %% "munit" % "0.7.29" % Test + "org.scalameta" %% "munit" % "1.0.0" % Test ), testFrameworks += new TestFramework("munit.Framework") ) @@ -110,9 +110,10 @@ lazy val coreJS = project ) .enablePlugins(ScalaJSPlugin) - lazy val root = project.in(file(".")). - aggregate(core, coreJS). - settings( +lazy val root = project + .in(file(".")) + .aggregate(core, coreJS) + .settings( publish := {}, - publishLocal := {}, - ) \ No newline at end of file + publishLocal := {} + )