Last active
November 3, 2016 16:08
-
-
Save devbhuwan/87e6ccd23e460a8ebdd8bcb8f6c5de81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<project> | |
<target name="antCopy"> | |
<!-- | |
<buildDir> and <srcDir> properties are pass in pom.xml in ant target configuration | |
<rootDir> property pass in antBuild.xml of antBuild target | |
--> | |
<copy todir="${buildDir}/classes/data"> | |
<fileset dir="${rootDir}/data"> | |
<include name="**/*.csv"/> | |
</fileset> | |
</copy> | |
</target> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment