diff --git a/build.sbt b/build.sbt index 7beba86..1b4b2ed 100644 --- a/build.sbt +++ b/build.sbt @@ -14,7 +14,7 @@ ThisBuild / scalacOptions := Seq( enablePlugins(GitVersioning) -import BuildSettings._ +import BuildSettings.* ThisBuild / git.useGitDescribe := true ThisBuild / git.remoteRepo := { @@ -318,7 +318,10 @@ lazy val `stream-loader` = project publishLocal := {}, publish / skip := true, Compile / doc / scalacOptions ++= Seq("-doc-title", name.value), - ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects(`stream-loader-tests`), + ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects( + `stream-loader-tests`, + `stream-loader-tests-util` + ), copyDocAssets := Def.taskDyn { val filter = ScopeFilter(inProjects(thisProject.value.aggregate: _*)) val destination = thisProject.value.base / "target" / "diagrams"