Skip to content

Commit 374b259

Browse files
committed
Skip internal packages in aggregated javadoc
1 parent 4c91a64 commit 374b259

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

local-build-plugins/src/main/groovy/local.publishing-java-module.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ configurations {
2626
}
2727

2828
dependencies {
29-
javadocSources sourceSets.main.allJava
29+
javadocSources sourceSets.main.allJava.filter { file ->
30+
!file.path.contains( "/internal/" )
31+
}
3032
}
3133

3234

0 commit comments

Comments
 (0)