Generate “Use” links in aggregated Spring API JavaDoc

This commit enables the `-use` javadoc flag so that class usage pages
are included in the aggregated JavaDoc that is published to
https://docs.spring.io/spring-framework/docs/.

Issue: SPR-17173
master
Sam Brannen 6 years ago
parent 1dcb6236a6
commit 13c090b41d
  1. 1
      gradle/docs.gradle

@ -27,6 +27,7 @@ task api(type: Javadoc) {
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
options.author = true
options.header = rootProject.description
options.use = true
options.overview = "src/docs/api/overview.html"
options.stylesheetFile = file("src/docs/api/stylesheet.css")
options.splitIndex = true

Loading…
Cancel
Save