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
Post a Comment