Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ant/Maven: "javadoc: warning - Error fetching URL"

I recently set up my build server (Jenkins) to generate Javadocs for Ant builds. However, no matter what I do, I can't get it to include links to external libraries. When I attempt to use an online link, Ant returns:

[javadoc] javadoc: warning - Error fetching URL: http://docs.oracle.com/javase/6/docs/api/package-list

When I use an offline link and reference a local copy of a package list, it gives no warnings, but doesn't generate links either. This occurs for every library I attempt to link, not just Java SE. Here are the respective lines for links in my build.xml:

<link offline="true" href="http://docs.oracle.com/javase/6/docs/api/" packagelistLoc="javadoc/javase6/package-list" />

and:

<link href="http://docs.oracle.com/javase/6/docs/api/" />

It's worth mentioning that the internet connection of the server doesn't have a particularly unusual configuration. After a bit of research, I found that the warning I received is common when using a proxy, but I couldn't find any cases where it was returned on a server with a direct connection.

I'd also like to mention that I've verified that my offline package list is in the proper location and accessible via a relative path from the build file.

Edit #1: This is apparently an issue on Maven as well, suggesting that the Javadoc tool itself is broken.

Edit #2: It's worth mentioning that I'm using JDK 1.6 update 45 to compile.

like image 235
Max Roncace Avatar asked Mar 08 '14 18:03

Max Roncace


1 Answers

<link offline="true" href="http://docs.oracle.com/javase/6/docs/api/"
    packagelistLoc="javadoc/javase6/package-list" />

should be:

<link offline="true" href="http://docs.oracle.com/javase/6/docs/api/"
    packagelistLoc="javadoc/javase6/" />

packagelistLoc is a path to directory containing package-list file.

like image 77
Piotr Praszmo Avatar answered Oct 17 '22 00:10

Piotr Praszmo