I'm trying to put the finishing touches on the OpenJUMP/OpenJUMP-Ex Ant
Build file that I've been working on. I've got everything but the Javadoc
task working. Here is the portion of my Ant build file that generates the
Javadoc for OpenJUMP:


<target name="javadoc">
    <javadoc destdir="${javadoc directory}" useexternalfile="true">
         <classpath refid="basic classpath"/>
         <fileset dir="${source directory}">
               <include name="com/**/*.java"/>
               <include name="com/**/*.html"/>
               <include name="org/**/*.java"/>
               <include name="org/**/*.html"/>
               <include name="de/**/*.java"/>
               <include name="de/**/*.html"/>
         </fileset>
    </javadoc>
</target>

I can see Ant loading each of the source files to generate the Javadoc in
the Eclipse Console View. The problem is when I check the ${javadoc
directory}" nothing is there. I've tried hardcoding a relative path in the
Javadoc Task's "destdir", but that doesn't seem to work either.

Do you guys have any suggestions for me?

Thanks,

The Sunburned Surveyor
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jump-pilot-devel mailing list
Jump-pilot-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to