Disable custom stylesheet for Javadoc
The custom stylesheet used with JDK 8 no longer works with JDK 17. Thus in order to make the generated Javadoc usable, we are disabling the custom stylesheet for the time being. See gh-27496
This commit is contained in:
parent
22f75d9ea9
commit
aa5a2a8600
|
@ -43,7 +43,8 @@ task api(type: Javadoc) {
|
||||||
header = rootProject.description
|
header = rootProject.description
|
||||||
use = true
|
use = true
|
||||||
overview = "src/docs/api/overview.html"
|
overview = "src/docs/api/overview.html"
|
||||||
stylesheetFile = file("src/docs/api/stylesheet.css")
|
// Disable custom stylesheet until we resolve https://github.com/spring-projects/spring-framework/issues/27496
|
||||||
|
// stylesheetFile = file("src/docs/api/stylesheet.css")
|
||||||
splitIndex = true
|
splitIndex = true
|
||||||
links(project.ext.javadocLinks)
|
links(project.ext.javadocLinks)
|
||||||
addBooleanOption('Xdoclint:syntax', true) // only check syntax with doclint
|
addBooleanOption('Xdoclint:syntax', true) // only check syntax with doclint
|
||||||
|
|
Loading…
Reference in New Issue