mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Merge branch '4.0.x' into 4.1.x
Closes gh-51500
This commit is contained in:
@@ -409,7 +409,9 @@ class JavaConventions {
|
||||
private void configureDependencyFixes(Project project) {
|
||||
project.getDependencies().getComponents().all((details) -> {
|
||||
// https://github.com/spring-projects/spring-framework/issues/37209
|
||||
if ("org.springframework".equals(details.getId().getGroup())) {
|
||||
// https://github.com/spring-projects/spring-graphql/issues/1515
|
||||
String group = details.getId().getGroup();
|
||||
if ("org.springframework".equals(group) || "org.springframework.graphql".equals(group)) {
|
||||
addDocumentaionVariant(project, details, "javadocElements", DocsType.JAVADOC, "javadoc");
|
||||
addDocumentaionVariant(project, details, "sourcesElements", DocsType.SOURCES, "sources");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user