[EMAIL PROTECTED] a écrit :
This does NOT work:
<target name="copy_other">
<echo>
Copy Other Files
${bin}
${src}
</echo>
<copy todir="${bin}">
<fileset dir="${src}">
<selector>
<or>
<filename name="hibernate.cfg.xml"/>
<filename name="./**/*.hbm.xml"/>
<filename name="./**/*.html"/>
</or>
</selector>
</fileset>
</copy>
</target>
Hello,
You can do something much simpler like :
<copy todir="${bin}">
<fileset dir="${src}"
includes="hibernate.cfg.xml,**/*.hbm.xml,**/*.html"/>
</copy>
MAT.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]