File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -174,6 +174,11 @@ object Build {
174
174
resourceDirectory in Compile := baseDirectory.value / " resources" ,
175
175
resourceDirectory in Test := baseDirectory.value / " test-resources" ,
176
176
177
+ // Disable scaladoc generation, it's way too slow and we'll replace it
178
+ // by dottydoc anyway. We still publish an empty -javadoc.jar to make
179
+ // sonatype happy.
180
+ sources in (Compile , doc) := Seq (),
181
+
177
182
// Prevent sbt from rewriting our dependencies
178
183
scalaModuleInfo ~= (_.map(_.withOverrideScalaVersion(false ))),
179
184
@@ -680,11 +685,6 @@ object Build {
680
685
}
681
686
682
687
lazy val nonBootstrapedDottyCompilerSettings = commonDottyCompilerSettings ++ Seq (
683
- // Disable scaladoc generation, it's way too slow and we'll replace it
684
- // by dottydoc anyway. We still publish an empty -javadoc.jar to make
685
- // sonatype happy.
686
- sources in (Compile , doc) := Seq (),
687
-
688
688
// packageAll packages all and then returns a map with the abs location
689
689
packageAll := {
690
690
Map (
You can’t perform that action at this time.
0 commit comments