<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<linksource>true</linksource>
<offlineLinks>
<offlineLink>
<url>http://java.sun.com/j2se/1.5.0/docs/api/</url>
<location>T:/maven/apidoc-packagelists/jdk-1.5.0</location>
</offlineLink>
</offlineLinks>
<docfilessubdirs>true</docfilessubdirs>
<excludedocfilessubdir>CVS</excludedocfilessubdir>
</configuration>
</plugin>
The locations must be valid Java file paths, pointing to a locally accessible directory which contains the package-list file for the given url.
1 comment:
Thanks, while reading the documentation for the mojo, I was wandering what the offlineLinks tag should be like. Now I know!
Post a Comment