@@ -1612,8 +1612,11 @@ object Build {
1612
1612
// Make sure that the produced artifacts have the minimum JVM version in the bytecode
1613
1613
Compile / javacOptions ++= Seq (" --target" , Versions .minimumJVMVersion),
1614
1614
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 ,
1615
1619
// Only publish compilation artifacts, no test artifacts
1616
- Compile / publishArtifact := true ,
1617
1620
Test / publishArtifact := false ,
1618
1621
// Do not allow to publish this project for now
1619
1622
publish / skip := false ,
@@ -1679,8 +1682,11 @@ object Build {
1679
1682
Test / compile := (`scala-library-bootstrapped` / Test / compile).value,
1680
1683
Test / doc := (`scala-library-bootstrapped` / Test / doc).value,
1681
1684
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 ,
1682
1689
// Only publish compilation artifacts, no test artifacts
1683
- Compile / publishArtifact := true ,
1684
1690
Test / publishArtifact := false ,
1685
1691
// Do not allow to publish this project for now
1686
1692
publish / skip := false ,
0 commit comments