You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Vijay Shinde <Vi...@morganstanley.com> on 2002/04/10 21:12:28 UTC

Generating Java Docs..

Hey,
 I am generating javadocs using Ant Javadoc tag But it is failing.It
tries to find the    source files for all the Jar's/Zip files i have
included in the classpath.I don't understand why it tries to find the
source file for the Jar's is any one has any clues?

Here is my javadoc target..

target name="javadoc" depends="" description="Generate JavaDoc">
    <!-- Delete any existing JavaDoc -->
    <delete dir="${javadoc}"/>

    <!-- Create the JavaDoc directory -->
    <mkdir dir="${javadoc}"/>

    <javadoc sourcepath="${src}"
       destdir="${javadoc}"
       excludepackagenames="com.*"
       author="true"
       version="true"
       use="true"
       windowtitle="EMPPORTAL"
       bottom=""/>
 </target>

Vijay


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Generating Java Docs..

Posted by Stefan Bodewig <bo...@apache.org>.
On Wed, 10 Apr 2002, Vijay Shinde <Vi...@morganstanley.com>
wrote:

>     <javadoc sourcepath="${src}"
>        destdir="${javadoc}"
>        excludepackagenames="com.*"
>        author="true"
>        version="true"
>        use="true"
>        windowtitle="EMPPORTAL"
>        bottom=""/>

does it work if you remove bottom=""?

What does ${src} look like?

Stefan

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>