mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-05-03 04:19:47 +01:00
Configure JDK 24 toolchain for aggregated Javadoc
Changes made in conjunction with #27497 now require that we generate Javadoc with JDK 18 or higher in order to make use of the "--link-modularity-mismatch" flag for the javadoc executable. This commit sets the toolchain for the javadoc task in the framework-api module to use JDK 24 for generating Javadoc. The common javadoc task used by all spring-* modules will be addressed in a separate commit. See gh-27497 See gh-34774
This commit is contained in:
@@ -20,6 +20,10 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
javadoc {
|
javadoc {
|
||||||
|
javadocTool.set(javaToolchains.javadocToolFor({
|
||||||
|
languageVersion = JavaLanguageVersion.of(24)
|
||||||
|
}))
|
||||||
|
|
||||||
title = "${rootProject.description} ${version} API"
|
title = "${rootProject.description} ${version} API"
|
||||||
options {
|
options {
|
||||||
encoding = "UTF-8"
|
encoding = "UTF-8"
|
||||||
|
|||||||
Reference in New Issue
Block a user