Generate “Use” links in Spring API JavaDoc

This commit enables the `-use` javadoc flag so that class usage pages
are included in the generated JavaDoc.

Issue: SPR-15427
This commit is contained in:
Sam Brannen 2017-04-11 00:11:44 +02:00
parent e5fc40a9de
commit 42420a2df7
1 changed files with 1 additions and 0 deletions

View File

@ -259,6 +259,7 @@ configure(subprojects - project(":spring-build-src")) { subproject ->
options.memberLevel = org.gradle.external.javadoc.JavadocMemberLevel.PROTECTED
options.author = true
options.header = project.name
options.use = true
options.links(project.ext.javadocLinks)
options.addStringOption('Xdoclint:none', '-quiet')