Ant

From miki
Revision as of 08:18, 15 May 2012 by Mip (talk | contribs) (Created page with ''''ant''' is the Java based make tool. == Environment Variables == <source lang=xml> <property environment="env"/> </source> provides all environment variables as Ant propertie…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

ant is the Java based make tool.

Environment Variables

<property environment="env"/>

provides all environment variables as Ant properties prefixed by "env.". For example, CLASSPATH would be accessible in Ant as ${env.CLASSPATH} (ref [1]).