I found two problems building the javadocs on NT. There is a problem with
quoting arguments that occurs if you use older versions of Ant. I downloaded
Ant 1.2 and it fixed the quoting problem, but I still had to change the
following sourcepath attribute from:

<javadoc2   sourcepath="${build.src}" 
            destdir="${javadoc.destdir}" 
            packagenames="org.apache.jetspeed.*"
            private="false" 
            windowtitle="${project} API"
            doctitle="${project}"
            version="true"
            use="true"
            bottom="Copyright &#169; ${year} Apache Software Foundation. All
Rights Reserved."
            author="true"/>

to:

<javadoc2   sourcepath="${src.java.dir}" 
            destdir="${javadoc.destdir}" 
            packagenames="org.apache.jetspeed.*"
            private="false" 
            windowtitle="${project} API"
            doctitle="${project}"
            version="true"
            use="true"
            bottom="Copyright &#169; ${year} Apache Software Foundation. All
Rights Reserved."
            author="true"/>

I don't know why the sourcepath was build.src, but it works fine if you
change it to the above. The javadoc2 tag is also deprecated and should
probable be removed. There were also a lot of other warnings and errors
about javadoc comments, but they don't prevent the javadocs from being
generated. Would someone mind checking in the updated ant.jar and fixing the
build.xml file?

Eric Northam
Associate Engineer, Latitude360
a division of RWD
410.715.5670
latitude360.com


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://marc.theaimsgroup.com/?l=jetspeed>
Problems?:           [EMAIL PROTECTED]

Reply via email to