Skip to content

Instantly share code, notes, and snippets.

@mattupstate
Created July 6, 2010 01:36
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 mattupstate/464896 to your computer and use it in GitHub Desktop.
Save mattupstate/464896 to your computer and use it in GitHub Desktop.
<!-- Builds the project -->
<target name="build" depends="run-test,compile-swf">
<echo>Build complete.</echo>
</target>
<!-- Build and deploy the project to testing context -->
<target name="deploy-testing" depends="build">
<echo>SWF compiled and ready for deployment to a testing environment.</echo>
</target>
<!-- Build and deploy the project to production context -->
<target name="deploy-production" depends="build">
<echo>SWF compiled and ready for deployment to a production environment.</echo>
</target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment