Skip to content

Commit f004747

Browse files
committed
fix build
1 parent c4a907b commit f004747

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/SparkBuild.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,11 @@ object Unidoc {
365365
unidocProjectFilter in(JavaUnidoc, unidoc) :=
366366
inAnyProject -- inProjects(OldDeps.project, repl, bagel, examples, tools, streamingFlumeSink, yarn),
367367

368-
// Skip class names containing $ and some internal packages in Javadocs
368+
// Skip actual catalyst, but include the subproject.
369+
// Catalyst is not public API and contains quasiquotes which break scaladoc.
369370
unidocAllSources in (ScalaUnidoc, unidoc) := {
370371
(unidocAllSources in (ScalaUnidoc, unidoc)).value
371-
.map(_.filterNot(_.getCanonicalPath.contains("spark/sql/catalyst")))
372+
.map(_.filterNot(_.getCanonicalPath.contains("sql/catalyst")))
372373
},
373374

374375
// Skip class names containing $ and some internal packages in Javadocs

0 commit comments

Comments
 (0)