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:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to