We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c488e01 + 3a831d9 commit 6bba767Copy full SHA for 6bba767
project/Build.scala
@@ -140,6 +140,11 @@ object DottyBuild extends Build {
140
settings(
141
overrideScalaVersionSetting,
142
143
+ // Disable scaladoc generation, it's way too slow and we'll replace it
144
+ // by dottydoc anyway. We still publish an empty -javadoc.jar to make
145
+ // sonatype happy.
146
+ sources in (Compile, doc) := Seq(),
147
+
148
// necessary evil: dottydoc currently needs to be included in the dotty
149
// project, for sbt integration
150
unmanagedSourceDirectories in Compile := Seq((scalaSource in Compile).value),
0 commit comments