Skip to content

Commit d0f3b9f

Browse files
committed
chore: do not generate scaladoc for bootstrapped stdlib yet
1 parent 14b227b commit d0f3b9f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

project/Build.scala

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,8 +1612,11 @@ object Build {
16121612
// Make sure that the produced artifacts have the minimum JVM version in the bytecode
16131613
Compile / javacOptions ++= Seq("--target", Versions.minimumJVMVersion),
16141614
Compile / scalacOptions ++= Seq("--java-output-version", Versions.minimumJVMVersion),
1615+
// Packaging configuration of the stdlib
1616+
Compile / packageBin / publishArtifact := true,
1617+
Compile / packageDoc / publishArtifact := false,
1618+
Compile / packageSrc / publishArtifact := true,
16151619
// Only publish compilation artifacts, no test artifacts
1616-
Compile / publishArtifact := true,
16171620
Test / publishArtifact := false,
16181621
// Do not allow to publish this project for now
16191622
publish / skip := false,
@@ -1679,8 +1682,11 @@ object Build {
16791682
Test / compile := (`scala-library-bootstrapped` / Test / compile).value,
16801683
Test / doc := (`scala-library-bootstrapped` / Test / doc).value,
16811684
Test / run := (`scala-library-bootstrapped` / Test / run).evaluated,
1685+
// Packaging configuration of the stdlib
1686+
Compile / packageBin / publishArtifact := true,
1687+
Compile / packageDoc / publishArtifact := false,
1688+
Compile / packageSrc / publishArtifact := true,
16821689
// Only publish compilation artifacts, no test artifacts
1683-
Compile / publishArtifact := true,
16841690
Test / publishArtifact := false,
16851691
// Do not allow to publish this project for now
16861692
publish / skip := false,

0 commit comments

Comments
 (0)