From d0ae2f2b4063c46833b386bd54d21f20c823ae4b Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Mon, 13 Apr 2026 20:42:29 +0000 Subject: [PATCH] Update munit-scalacheck to 1.3.0 --- build.sbt | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/build.sbt b/build.sbt index 0c54aaa..51dbd51 100644 --- a/build.sbt +++ b/build.sbt @@ -29,25 +29,20 @@ lazy val commonSettings = Seq( ), libraryDependencies ++= Seq( "org.scalameta" %% "munit" % munitVersion % Test, - "org.scalameta" %% "munit-scalacheck" % "1.0.0" % Test // TODO: Align with munitVersion, once released + "org.scalameta" %% "munit-scalacheck" % "1.3.0" % Test // TODO: Align with munitVersion, once released ) ) -lazy val syncodia = project - .in(file("core")) - .settings(commonSettings) - .settings( - name := "syncodia", - libraryDependencies ++= Seq( - "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, - "org.apache.pekko" %% "pekko-stream" % pekkoVersion, - "com.lihaoyi" %% "upickle" % uSerializationVersion, - "com.lihaoyi" %% "ujson" % uSerializationVersion, - "org.scala-lang" % "scala-reflect" % scalaReflectVersion, - "com.knuddels" % "jtokkit" % jTokkitVersion - ) +lazy val syncodia = project.in(file("core")).settings(commonSettings).settings( + name := "syncodia", + libraryDependencies ++= Seq( + "org.apache.pekko" %% "pekko-http" % pekkoHttpVersion, + "org.apache.pekko" %% "pekko-stream" % pekkoVersion, + "com.lihaoyi" %% "upickle" % uSerializationVersion, + "com.lihaoyi" %% "ujson" % uSerializationVersion, + "org.scala-lang" % "scala-reflect" % scalaReflectVersion, + "com.knuddels" % "jtokkit" % jTokkitVersion ) +) -lazy val examples = project - .settings(commonSettings) - .dependsOn(syncodia) +lazy val examples = project.settings(commonSettings).dependsOn(syncodia)