Skip to content

Commit 99b7b97

Browse files
committed
Ensure to publish javadoc for scala3-library artifacts - required by Maven validation
1 parent 6c774dc commit 99b7b97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1452,7 +1452,7 @@ object Build {
14521452
Compile / classDirectory := (`scala-library-bootstrapped` / Compile / classDirectory).value,
14531453
// Packaging configuration of the stdlib
14541454
Compile / packageBin / publishArtifact := true,
1455-
Compile / packageDoc / publishArtifact := false,
1455+
Compile / packageDoc / publishArtifact := true,
14561456
Compile / packageSrc / publishArtifact := true,
14571457
// Only publish compilation artifacts, no test artifacts
14581458
Test / publishArtifact := false,
@@ -1632,7 +1632,7 @@ object Build {
16321632
Test / run := (`scala-library-sjs` / Test / run).evaluated,
16331633
// Packaging configuration of the stdlib
16341634
Compile / packageBin / publishArtifact := true,
1635-
Compile / packageDoc / publishArtifact := false,
1635+
Compile / packageDoc / publishArtifact := true,
16361636
Compile / packageSrc / publishArtifact := true,
16371637
// Only publish compilation artifacts, no test artifacts
16381638
Test / publishArtifact := false,

0 commit comments

Comments
 (0)