Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
ThisBuild / scalaVersion := "3.2.2"
ThisBuild / scalaVersion := "3.3.1"
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 Down