Skip to content

Instantly share code, notes, and snippets.

@nicholasdunbar
Last active August 29, 2015 14:11
Show Gist options
  • Save nicholasdunbar/84f2cae994d6ab3297cb to your computer and use it in GitHub Desktop.
Save nicholasdunbar/84f2cae994d6ab3297cb to your computer and use it in GitHub Desktop.
Example of creating a variable in ANT, variables in ANT are called properties
<?xml version="1.0"?>
<project default="main" basedir=".">
<!-- This is the example of creating a variable or inline property, directly in the build file-->
<property name="CRONTAB_PATH" value="/some/dir/"/>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment