On Fri, Mar 28, 2014 at 2:59 PM, Laird Nelson <[email protected]> wrote:

> Fails under javadoc 8.  I'll file a bug with Oracle; it appears that the
> -link option is nonfunctional.
>

Found the issue, I think; filed
http://jira.codehaus.org/browse/MJAVADOC-393to track it.

Basically, for unknown reasons, javadoc version 8 requires a trailing slash
at the end of its -link options.  So this works:

javadoc -link http://foo.bar/baz*/* ...


...but this does not:

javadoc -link http://foo.bar/baz ...


Line 3932 of AbstractJavadocMojo.java is responsible for programmatically
stripping trailing slashes—which of course works fine for earlier versions
of javadoc.

(Probably while someone's in there they should add formal support for the
Java 8 API locations, etc. as well.)

Best,
Laird

-- 
http://about.me/lairdnelson

Reply via email to