Here is an example:

<target name="javadoc" depends="prepare, compile">
    <mkdir dir="${javadoc.dir}"/>
    <javadoc packagenames="com.marleta.school.${course}.${assignment}.*"
          sourcepath="${src.dir}"
          destdir="${javadoc.dir}"
          author="true"
          use="true"
          windowtitle="${course} ${assignment}"
          bottom="Copyright &#169; 2002 Marleta E. Young All Rights 
Reserved.">
       <link href="http://java.sun.com/products/jdk/1.3/docs/api/"/>
    </javadoc>
</target>

Jason Dillon wrote:

> Does anyone know the correct way to make javadoc generate links to an 
> external javadoc site?  I have seen this before... but have been to lazy 
> to figure it out.  Can anyone explain this to me so I can remain lazy?
> 
> --jason
> 
> 
> _______________________________________________
> Jboss-development mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-development



_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to