java - ANT creating a WAR file and excluding a word -
when building war file want exclude files have word "test" in them. there way exclude files in 1 exclude tag?
yes, using in <fileset>:
<exclude name="**/*test*"/> in fact, first example in ant manual <fileset>.
Comments
Post a Comment