Fix documentation path for R2DBC.

This commit is contained in:
Mark Paluch
2023-09-29 09:10:07 +02:00
parent ed3fa6dbc6
commit edd698bf20

View File

@@ -59,7 +59,8 @@ public class DocumentationMetadata {
return String.format(JAVADOC, getProjectName(Projects.COMMONS), getDocumentationVersion());
}
return String.format(JAVADOC, getProjectName(project), getDocumentationVersion());
return String.format(JAVADOC, project == Projects.R2DBC ? "r2dbc" : getProjectName(project),
getDocumentationVersion());
}
private String getProjectName(Project project) {