I'm building a project using Java 8 and Maven. The project builds Javadoc API docs as usual. My Javadocs have lots of {@link} links to Vaadin classes. But it seems impossible to make the corresponding generated hyperlinks actually work.
This is the same problem as #63, which I think happens because Vaadin is built with newer JDK versions which generate element-list instead of package-list files.
OK, so there is a workaround, which is to manually create and add the package-list file to the project under src/javadoc/vaadin/, and then do this:
I'm building a project using Java 8 and Maven. The project builds Javadoc API docs as usual. My Javadocs have lots of
{@link}
links to Vaadin classes. But it seems impossible to make the corresponding generated hyperlinks actually work.The following doesn't work:
This is the same problem as #63, which I think happens because Vaadin is built with newer JDK versions which generate
element-list
instead ofpackage-list
files.OK, so there is a workaround, which is to manually create and add the
package-list
file to the project undersrc/javadoc/vaadin/
, and then do this:But that doesn't work either! Because the vaadin.com website doesn't allow opening API docs with a HTML frame for some reason:
Can you fix that somehow?
Bleh! I just want working hyperlinks in my Javadoc.
This used to be so easy and now it seems so hard. What am I missing?
Thanks for any help.