Skip to content
Open
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
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.typelevel.scalacoptions.ScalacOptions

lazy val commonSettings = Seq(
scalaVersion := "3.7.3",
scalaVersion := "3.7.4",
scalacOptions ++= Seq("-no-indent"),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % Test,
Expand All @@ -25,15 +25,15 @@ lazy val commonSettings = Seq(
),
versionScheme := Some("semver-spec"),
Test / tpolecatExcludeOptions += ScalacOptions.warnNonUnitStatement,
Test / fork := true // required for tasty collector to work
Test / fork := true, // required for tasty collector to work
)

lazy val root = (project in file("."))
.settings(
name := "domainDocs4s",
name := "domainDocs4s",
publish / skip := true,
)
.aggregate(core , examples)
.aggregate(core, examples)

lazy val core = (project in file("domainDocs4s-core"))
.settings(commonSettings)
Expand All @@ -59,4 +59,4 @@ lazy val stableVersion = taskKey[String]("stableVersion")
stableVersion := {
if (isVersionStable.value && !isSnapshot.value) version.value
else previousStableVersion.value.getOrElse("unreleased")
}
}