Otherwise, the message related to you is incorrect or where there is a change in phing with this answer.
Here comes the working build.xml , which copies test to test2 (expect from .svn folders). The syntax is as follows:
<?xml version="1.0" encoding="UTF-8"?> <project name="Hexdump" default="build"> <target name="build"> <copy todir="test2"> <fileset dir="test"> <include name="**"></include> <exclude name="**/.svn/**"></exclude> </fileset> </copy> </target> </project>
You can refer to the Phing Core Tasks Documentation
source share