>> Since a war file is, more or less, a zip file...I say give the zip >> task a try. I think it would work better for what you're >trying to accomplish. > >I tried that, it has the same behaviour.
Because it´s the base class of <jar> .... jar=org.apache.tools.ant.taskdefs.Jar zip=org.apache.tools.ant.taskdefs.Zip war=org.apache.tools.ant.taskdefs.War ear=org.apache.tools.ant.taskdefs.Ear public abstract class MatchingTask extends Task implements SelectorContainer ... - filesets, selectors, ... public class Zip extends MatchingTask ... - zip compression public class Jar extends Zip ... - meta-inf stuff ... public class Ear extends Jar ... - application.xml ... public class War extends Jar ... - web-inf stuff ... Jan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
