You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Pier Fumagalli <pi...@betaversion.org> on 2002/05/23 21:05:42 UTC

FW: bad build.xml file.

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


    Pier

------ Forwarded Message
> From: Ryan Christianson <ry...@echospace.com>
> Date: Thu, 23 May 2002 11:31:12 -0700
> To: general@jakarta.apache.org
> 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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>