mirror of https://github.com/sbt/sbt.git
[2.x] Fix scaladoc issue in mainProj and sbtIvyProj (#9061)
This commit is contained in:
parent
7408fc93c7
commit
160a6c1fb0
12
build.sbt
12
build.sbt
|
|
@ -742,8 +742,10 @@ lazy val mainProj = (project in file("main"))
|
||||||
Test / testOptions += Tests
|
Test / testOptions += Tests
|
||||||
.Argument(TestFrameworks.ScalaCheck, "-minSuccessfulTests", "1000"),
|
.Argument(TestFrameworks.ScalaCheck, "-minSuccessfulTests", "1000"),
|
||||||
SettingKey[Boolean]("usePipelining") := false,
|
SettingKey[Boolean]("usePipelining") := false,
|
||||||
// TODO: Fix doc
|
libraryDependencies += {
|
||||||
Compile / doc / sources := Nil,
|
// https://github.com/scala/scala3/issues/18487
|
||||||
|
"net.hamnaberg" %% "dataclass-annotation" % dataclassScalafixVersion % Provided
|
||||||
|
},
|
||||||
mimaSettings,
|
mimaSettings,
|
||||||
mimaBinaryIssueFilters ++= Vector(
|
mimaBinaryIssueFilters ++= Vector(
|
||||||
// Moved to sbt-ivy module (Step 5 of sbt#7640)
|
// Moved to sbt-ivy module (Step 5 of sbt#7640)
|
||||||
|
|
@ -782,8 +784,10 @@ lazy val sbtIvyProj = (project in file("sbt-ivy"))
|
||||||
name := "sbt-ivy",
|
name := "sbt-ivy",
|
||||||
sbtPlugin := true,
|
sbtPlugin := true,
|
||||||
pluginCrossBuild / sbtVersion := version.value,
|
pluginCrossBuild / sbtVersion := version.value,
|
||||||
// TODO: Fix doc
|
libraryDependencies += {
|
||||||
Compile / doc / sources := Nil,
|
// https://github.com/scala/scala3/issues/18487
|
||||||
|
"net.hamnaberg" %% "dataclass-annotation" % dataclassScalafixVersion % Provided
|
||||||
|
},
|
||||||
mimaPreviousArtifacts := Set.empty, // new module, no previous artifacts
|
mimaPreviousArtifacts := Set.empty, // new module, no previous artifacts
|
||||||
)
|
)
|
||||||
.configure(addSbtIO)
|
.configure(addSbtIO)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue