Skip to content

Instantly share code, notes, and snippets.

@devbhuwan
Last active November 3, 2016 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devbhuwan/17a7f0b537e29411dfae90461b8ffdf3 to your computer and use it in GitHub Desktop.
Save devbhuwan/17a7f0b537e29411dfae90461b8ffdf3 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8" ?>
<project>
<target name="antBuild">
<!-- Properties value inside this traget scope -->
<property name="rootDir" value="."/>
<property name="author" value="Bhuwan Prasad Upadhyay"/>
<echo message="Copying....."/>
<!-- antCopy.xml responsible to copy files -->
<ant antFile="antRun/antCopy.xml" target="antCopy"/>
<echo message="Concating....."/>
<!-- antConcat.xml responsible to concat files -->
<ant antFile="antRun/antConcat.xml" target="antConcat"/>
<echo message="Replacing....."/>
<!-- antReplace.xml responsible to copy files -->
<ant antFile="antRun/antReplace.xml" target="antReplace"/>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment