File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
documentation/spring-boot-docs Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -407,12 +407,15 @@ def aggregatedJavadoc = tasks.register('aggregatedJavadoc', Javadoc) {
407
407
}
408
408
409
409
project. rootProject. gradle. projectsEvaluated {
410
- Set<Project > publishedProjects = rootProject. subprojects. findAll { it != project }
410
+ Set<Project > publishedProjects = rootProject. subprojects
411
+ .findAll { it != project }
411
412
.findAll { it. plugins. hasPlugin(JavaPlugin ) && it. plugins. hasPlugin(MavenPublishPlugin ) }
412
- .findAll { ! it. path. contains(" :spring-boot-tools:" ) ||
413
- it. path. contains(" :spring-boot-tools:spring-boot-buildpack-platform" ) ||
414
- it. path. contains(" :spring-boot-tools:spring-boot-loader-tools" ) ||
415
- (it. path. contains(" :spring-boot-tools:spring-boot-loader" ) && ! it. path. contains(" spring-boot-loader-classic" ))}
413
+ .findAll { ! it. path. contains(" :build-plugin:" ) }
414
+ .findAll { ! it. path. contains(" :cli:" ) }
415
+ .findAll { ! it. path. contains(" :configuration-metadata:" ) }
416
+ .findAll { ! it. path. contains(" :core:spring-boot-properties-migrator" ) }
417
+ .findAll { ! it. path. contains(" :loader:spring-boot-jarmode-tools" ) }
418
+ .findAll { ! it. path. contains(" :loader:spring-boot-loader-classic" ) }
416
419
.findAll { ! it. name. startsWith(' spring-boot-starter' ) }
417
420
aggregatedJavadoc. configure {
418
421
dependsOn publishedProjects. javadoc
You can’t perform that action at this time.
0 commit comments