maven - Ant - Using external file to use in patternset -


in ant, use patternset include or exclude set of file using pattern such

<unzip src="${tomcat_src}/tools-src.zip"        dest="${tools.home}">     <patternset>         <include name="**/*.java"/>         <exclude name="**/test*.java"/>     </patternset> </unzip> 

is ant capable of taking patternset external file txt or xml? seeing around ant wiki not mention of such usuage, thinking otherwise.

consider using includesfile/excludesfile or includes/excludes attributes of patternset.

in case of includes/excludes, can use values of properties stored in normal property file.


Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -