On Sep 17, 9:43 am, wong_po...@yahoo.ca wrote:
> My ant build file is:
> ...
[quoted text clipped - 14 lines]
> Instead of listing each binary file one by one for copying, is there a
> shorter way of copying them?
Take a look at Ant's copy task and fileset type. In particular, here's
an example of using fileset with copy to copy several files without
listing them individually:
<copy todir="../dest/dir">
<fileset dir="src_dir">
<exclude name="**/*.java"/>
</fileset>
</copy>
See: <http://ant.apache.org/manual/CoreTasks/copy.html>
and: <http://ant.apache.org/manual/CoreTypes/fileset.html>