On 01/14/2014 06:38 AM, Rory O'Donnell Oracle, Dublin Ireland wrote:
We see that the javadoc executable has become stricter.
Especially the "reference not found" is tricky, since there's a good
chance the sources are from a dependency, something we cannot change.
The only workaround I could find was adding a excludePackageNames for
the specific class, but this will exclude all classes of that package
The -Xdoclint option allows you to disable some or all of the new checks
provided by javadoc. You can disable the reference checks with
-Xdoclint:all,-reference
-- Jon