Skip to content

Commit cd8c886

Browse files
committed
Disable generation of API docs in scala-library-bootstrapped - it's still going to be generated when building using scaladoc/generateStableDocumentation
1 parent dfb93fe commit cd8c886

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

project/Build.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ object Build {
457457
import java.text._
458458
val dateFormat = new SimpleDateFormat("yyyyMMdd-HHmmss")
459459
dateFormat.setTimeZone(TimeZone.getTimeZone("GMT"))
460-
460+
461461
val fileName = "compiler.properties"
462462
val contents = Def.setting {
463463
s"""version.number=${version.value}
@@ -2026,6 +2026,7 @@ object Build {
20262026
lazy val `scala-library-bootstrapped` = project.in(file("library"))
20272027
.enablePlugins(ScalaLibraryPlugin)
20282028
.settings(publishSettings)
2029+
.settings(disableDocSetting) // TODO now produces empty JAR to satisfy Sonatype, see https://github.com/scala/scala3/issues/24434
20292030
.settings(
20302031
name := "scala-library-bootstrapped",
20312032
moduleName := "scala-library",

0 commit comments

Comments
 (0)