I need to use artifact X which does not have neither source nor javadoc artifacts available. I know, however, an external web server where the javadoc for X has been publicized.
In "plain" Eclipse I can attach an URL as the Javadoc Location for a jar in the build path, and then Shift-F2 opens a browser to that URL.
I would like to have m2e do the same automatically for artifact X without changing the artifacts from Maven Central.
Sample pom.xml showing this:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>foo</groupId>
<artifactId>m2e-javadoc</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>ASCII</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>net.sf.jt400</groupId>
<artifactId>jt400-full</artifactId>
<version>5.0</version>
</dependency>
</dependencies>
</project>
How do I hint this?
EDIT: Question has been asked on m2e mailing list at http://dev.eclipse.org/mhonarc/lists/m2e-users/msg02386.html