> From: Paul Goepfert [mailto:[EMAIL PROTECTED] > > I am creating a WAR task in my build.xml file. How do I move two > configuration xml files that are not my web.xml file to my war file? I > would like to have these files in a dir called conf within the WEB-INF > file.
I'm no <war> expert, but here's an example: <war ...> <classes dir="build/classes" /> <lib refid="war.libs" /> <zipfileset dir="from/dir/on/disk" prefix="to/dir/in/war" /> </war> So using a <zipfileset> with a prefix of WEB-INF/conf should work. --DD --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]