@@ -1216,7 +1216,6 @@ object Build {
1216
1216
val generateSelfDocumentation = taskKey[Unit ](" Generate example documentation" )
1217
1217
// Note: the two tasks below should be one, but a bug in Tasty prevents that
1218
1218
val generateScala3Documentation = inputKey[Unit ](" Generate documentation for dotty lib" )
1219
- val generateScala3StdlibDocumentation = taskKey[Unit ](" Generate documentation for Scala3 standard library" )
1220
1219
val generateTestcasesDocumentation = taskKey[Unit ](" Generate documentation for testcases, usefull for debugging tests" )
1221
1220
lazy val `scala3doc` = project.in(file(" scala3doc" )).asScala3doc
1222
1221
lazy val `scala3doc-testcases` = project.in(file(" scala3doc-testcases" )).asScala3docTestcases
@@ -1566,9 +1565,9 @@ object Build {
1566
1565
val majorVersion = (scalaBinaryVersion in LocalProject (" scala3-library-bootstrapped" )).value
1567
1566
1568
1567
val dottyJars : Seq [java.io.File ] = Seq (
1568
+ (`stdlib-bootstrapped`/ Compile / products).value,
1569
1569
(`scala3-interfaces`/ Compile / products).value,
1570
1570
(`tasty-core-bootstrapped`/ Compile / products).value,
1571
- (`scala3-library-bootstrapped`/ Compile / products).value,
1572
1571
).flatten
1573
1572
1574
1573
val roots = joinProducts(dottyJars)
@@ -1584,23 +1583,6 @@ object Build {
1584
1583
" -siteroot scala3doc/scala3-docs -project-logo scala3doc/scala3-docs/logo.svg" ))
1585
1584
}.evaluated,
1586
1585
1587
-
1588
- generateScala3StdlibDocumentation:= Def .taskDyn {
1589
- val dottyJars : Seq [java.io.File ] = Seq (
1590
- (`stdlib-bootstrapped`/ Compile / products).value,
1591
- (`scala3-interfaces`/ Compile / products).value,
1592
- (`tasty-core-bootstrapped`/ Compile / products).value,
1593
- ).flatten
1594
-
1595
- val roots = joinProducts(dottyJars)
1596
-
1597
- if (dottyJars.isEmpty) Def .task { streams.value.log.error(" Dotty lib wasn't found" ) }
1598
- else generateDocumentation(
1599
- roots, " Scala 3" , " scala3doc/output/scala3-stdlib" , " maser" ,
1600
- " -siteroot scala3doc/scala3-docs -comment-syntax wiki -project-logo scala3doc/scala3-docs/logo.svg "
1601
- )
1602
- }.value,
1603
-
1604
1586
generateTestcasesDocumentation := Def .taskDyn {
1605
1587
generateDocumentation(Build .testcasesOutputDir.in(Test ).value, " Scala3doc testcases" , " scala3doc/output/testcases" , " master" )
1606
1588
}.value,
0 commit comments