Skip to content

Instantly share code, notes, and snippets.

@dannykopping
Created April 9, 2012 12:33
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 dannykopping/2343152 to your computer and use it in GitHub Desktop.
Save dannykopping/2343152 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<project name="test-deploy-ci" default="default">
<target name="default">
<if>
<isset property="value.entered"/>
<then>
<echo msg="You entered: ${value.entered}"/>
</then>
</if>
<input message="Please enter a value:" propertyName="value.entered"/>
<echo msg="You entered: ${value.entered}"/>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment