Javadoc task does not generate "use" page

The link to the DSL shows the options as being an implementation of the MinimalJavadocOptions interface. If you drill down to the StandardJavadocDocletOptions implementation, you should see the use parameter there.

This will work for the standard javadoc task, but of course you can configure the same thing if you have defined your own Javadoc tasks:

javadoc {
    options.use = true
}