posted 17 years ago
followinf is my build file
<project default="compile">
<target name="compile">
<copy file="src.txt" toFile="dest.txt" filtering="true" >
<filterset>
<filter token="TITLE" value="Foo Bar"/>
</filterset>
</copy>
</target>
</project>
src.txt is having TITLE after running above build dest.txt is still having TITLE its not being replaced with Foo Bar any thing i am missing.
help appreciated.
thanks in advance