Merge pull request #24648 from dreis2211
* gh-24648: Exclude starters from Javadoc aggregation Closes gh-24648
This commit is contained in:
		
						commit
						05890a2599
					
				| 
						 | 
				
			
			@ -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)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue