I've defined a property as follows in a
property file:
<property name="File_To_Include.List"
value="*.java;*.sql;*.class"/>
There can be other options that I want
to include in the list.
I want to use the added options in the
filelist as mention in the following task, wherein I'm mentioning each possible
option explicitly.
<zip zipfile="${zipfilename}"
ziplevel="9">
<fileset basedir="${build.path}">
<include name="**/*.java"/>
<include name="**/*.sql"/>
</fileset>
</zip>
<fileset basedir="${build.path}">
<include name="**/*.java"/>
<include name="**/*.sql"/>
</fileset>
</zip>
Is there a possibility to do the same by
setting some property values, instead of hard coding it.
Any pointers for this will be
helpful.
Thanks
Shelly