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

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -