Skip to content

Commit

Permalink
Merge pull request #24648 from dreis2211
Browse files Browse the repository at this point in the history
* gh-24648:
  Exclude starters from Javadoc aggregation

Closes gh-24648
  • Loading branch information
wilkinsona committed Jan 5, 2021
2 parents 691f905 + fe3217d commit 05890a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions spring-boot-project/spring-boot-docs/build.gradle
Expand Up @@ -117,6 +117,7 @@ task aggregatedJavadoc(type: Javadoc) {
Set<Project> publishedProjects = rootProject.subprojects.findAll { it != project}
.findAll { it.plugins.hasPlugin(JavaPlugin) && it.plugins.hasPlugin(MavenPublishPlugin) }
.findAll { !excludedProjects.contains(it.name) }
.findAll { !it.name.startsWith('spring-boot-starter') }
dependsOn publishedProjects.javadoc
source publishedProjects.javadoc.source
classpath = project.files(publishedProjects.javadoc.classpath)
Expand Down

0 comments on commit 05890a2

Please sign in to comment.