Created
April 9, 2012 12:33
-
-
Save dannykopping/2343152 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 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