Skip to content

Commit

Permalink
Update munit to 1.0.0-M10
Browse files Browse the repository at this point in the history
  • Loading branch information
fmonniot-s-scala-steward[bot] committed Nov 26, 2023
1 parent dc9bcb4 commit 025dd23
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ ThisBuild / scalaVersion := "3.2.2"
ThisBuild / organization := "eu.monniot"
ThisBuild / homepage := Some(url("https://github.com/fmonniot/scala3mock"))
ThisBuild / licenses := Seq("MIT" -> url("https://opensource.org/licenses/MIT"))
ThisBuild / releaseNotesURL := Some(url("https://github.com/fmonniot/scala3mock/releases"))
ThisBuild / releaseNotesURL := Some(
url("https://github.com/fmonniot/scala3mock/releases")
)
ThisBuild / scmInfo := Some(
ScmInfo(
url("https://github.com/fmonniot/scala3mock"),"[email protected]:fmonniot/scala3mock.git"
url("https://github.com/fmonniot/scala3mock"),
"[email protected]:fmonniot/scala3mock.git"
)
)
ThisBuild / versionScheme := Some("early-semver")
Expand All @@ -16,15 +19,15 @@ ThisBuild / developers := List(
"François Monniot",
"[email protected]",
url("https://francois.monniot.eu")
),
)

// Not sure if we should include the original ScalaMock devs here as well ?
)

lazy val scala3mock = project
.in(file("."))
.aggregate(core, scalatest)
.settings(publish/skip := true)
.settings(publish / skip := true)

lazy val core = project
.in(file("./core"))
Expand All @@ -37,7 +40,7 @@ lazy val core = project
// details of classes. Without it, only the signatures are available.
// Test / scalacOptions += "-Yretain-trees", // For debugging when writing macros

libraryDependencies += "org.scalameta" %% "munit" % "1.0.0-M7" % Test
libraryDependencies += "org.scalameta" %% "munit" % "1.0.0-M10" % Test
)

lazy val scalatest = project
Expand Down

0 comments on commit 025dd23

Please sign in to comment.