Browse Source

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
pull/1384/merge
Sam Brannen 9 years ago
parent
commit
42420a2df7
  1. 1
      build.gradle

1
build.gradle

@ -259,6 +259,7 @@ configure(subprojects - project(":spring-build-src")) { subproject -> @@ -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')

Loading…
Cancel
Save