Hi
I have a ant script which creates a war file, every
thing works well but it does not copy empty directory
in the war file, i need one directory which is empty,
it is under WEB-INF and at run time xml files are
created in it, 
My web application expects this empty folder and
crashes if not found, 
How do i say in ant script to copy empty directory
also.
This is my ant script
<target name="all" depends="compile,createjar"
description="create deployable war file">
 <war basedir="${webroot}" destfile ="download.war"
webxml="${webroot}/WEB-INF/web.xml"
excludes="**/*.properties,**/*.class" update="true" >
                
       </war>
    </target>

Ashish


                
__________________________________ 
Do you Yahoo!? 
Meet the all-new My Yahoo! - Try it today! 
http://my.yahoo.com 
 


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

Reply via email to