Skip to content

Commit f7af2cb

Browse files
committed
commit
tighten the directory in project/SparkBuild.scala
1 parent 3ab4403 commit f7af2cb

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

project/SparkBuild.scala

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -360,15 +360,16 @@ object Unidoc {
360360
packages
361361
.map(_.filterNot(_.getName.contains("$")))
362362
.map(_.filterNot(_.getCanonicalPath.contains("akka")))
363-
.map(_.filterNot(_.getCanonicalPath.contains("deploy")))
364-
.map(_.filterNot(_.getCanonicalPath.contains("network")))
365-
.map(_.filterNot(_.getCanonicalPath.contains("shuffle")))
366-
.map(_.filterNot(_.getCanonicalPath.contains("executor")))
363+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/deploy")))
364+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/network")))
365+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/shuffle")))
366+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/executor")))
367367
.map(_.filterNot(_.getCanonicalPath.contains("python")))
368-
.map(_.filterNot(_.getCanonicalPath.contains("collection")))
369-
.map(_.filterNot(_.getCanonicalPath.contains("apache/spark/sql/catalyst")))
370-
.map(_.filterNot(_.getCanonicalPath.contains("sql/execution")))
371-
.map(_.filterNot(_.getCanonicalPath.contains("sql/hive/test")))
368+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/collection")))
369+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/catalyst")))
370+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/types")))
371+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/execution")))
372+
.map(_.filterNot(_.getCanonicalPath.contains("org/apache/spark/sql/hive/test")))
372373
}
373374

374375
lazy val settings = scalaJavaUnidocSettings ++ Seq (

0 commit comments

Comments
 (0)