Skip to content

Links to Spring Framework missing from Javadoc #10954

Open
@jzheaux

Description

@jzheaux

Related to #7868

A class that references objects in another Javadoc should link to that Javadoc. This worked in 4.2.12.RELEASE and onward, but stopped working again later on.

It can be fixed by configuring Javadoc links in the Gradle Javadoc class like so:

javadoc {
    options {
        links = [
            "https://dos.spring.io/spring/docs/$springFrameworkVersion/javadoc-api/",
            "https://docs.spring.io/spring-ldap/docs/$springLdapVersion/apidocs/",
            "https://docs.oracle.com/en/java/javase/11/docs/api/"
        ]
    }
}

Or programmatically in Groovy with an instance of StandardJavadocDocletOptions.

Metadata

Metadata

Assignees

No one assigned

    Labels

    in: docsAn issue in Documentation or samplestype: bugA general bug

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions