Rejected posting to general@jakarta, but FYI, easy to fix.

    Pier

------ Forwarded Message
> From: Ryan Christianson <[EMAIL PROTECTED]>
> Date: Thu, 23 May 2002 11:31:12 -0700
> To: [EMAIL PROTECTED]
> Subject: bad build.xml file.
> 
> Just a friendly note.
> 
> If you install tomcat 4.01, and go to this page:
> http://localhost:8080/tomcat-docs/appdev/source.html
> 
> Then go to the example build.xml file:
> http://localhost:8080/tomcat-docs/appdev/build.xml.txt
> 
> There is a xml error in the file:
> On line 300, the <javadoc> node, is terminated incorectly.
> 
> It comes like this:
> <target name="javadoc" depends="compile"
>  description="Create Javadoc API documentation">
> 
>   <mkdir          dir="${dist.home}/docs/api"/>
>   <javadoc sourcepath="src"
>               destdir="${dist.home}/docs/api"
>          packagenames="*"/>
>     <classpath refid="compile.classpath"/>
>   </javadoc>
> 
> </target>
> 
> It should be like this:
> <target name="javadoc" depends="compile"
>  description="Create Javadoc API documentation">
> 
>   <mkdir          dir="${dist.home}/docs/api"/>
>   <javadoc sourcepath="src"
>               destdir="${dist.home}/docs/api"
>          packagenames="*">
>     <classpath refid="compile.classpath"/>
>   </javadoc>
> 
> </target>
> 
> 

------ End of Forwarded Message


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to