Wendy Smoak-3 wrote: > > On 6/10/06, Lyndon Washington <[EMAIL PROTECTED]> wrote: > >> I saw from the javadoc-mojo page, >> http://maven.apache.org/plugins/maven-javadoc-plugin/javadoc-mojo.html, >> that >> there is a links tag which takes an ArrayList. It also says that the >> Strings are comma separate. > > I added an example to the wiki: > http://docs.codehaus.org/display/MAVENUSER/Javadoc+Plugin > > <plugin> > <artifactId>maven-javadoc-plugin</artifactId> > <configuration> > <links> > > <link>http://java.sun.com/j2se/1.4.2/docs/api</link> > > <link>http://jakarta.apache.org/commons/chain/apidocs</link> > </links> > </configuration> > </plugin> > > -- > Wendy >
Hello, can you tell how to specify a relative local link? the example mentioned above works great me. absolute local links also work: <link>file:///d:/somedir/apidocs/</link>. relative links don't work though: i tried things like <link>apidocs/</link> or <link>./apidocs/</link>. error message: malformed link: apidocs/package-list. IGNORED IT. i'm using javadoc plugin 2.3 and maven 2.0.7 -- View this message in context: http://www.nabble.com/How-to-Specify-%27Links%27-In-the-Javadoc-Plugin-tf1768518s177.html#a13074884 Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
