docs: Use rootProject.name over project.name for javadocs title (#1859)

* docs: Use rootProject.name over project.name for javadocs title

* docs: Add module name as well
This commit is contained in:
Alexander Brandes 2022-06-29 23:18:39 +02:00 committed by GitHub
parent ffd98ad6d9
commit def84a80c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ fun Project.applyCommonJavaConfiguration(sourcesJar: Boolean, banSlf4j: Boolean
"https://jd.papermc.io/paper/1.18/",
"https://intellectualsites.github.io/fastasyncworldedit-javadocs/worldedit-core/"
)
docTitle = "${rootProject.name}-${project.description}" + " " + "${rootProject.version}"
}
}