How I can pass a string from my ant task to a build.xml?
Created May 1, 2002
Erik Hatcher Using Ant properties:
ant -Dsome.prop=valueAnd in your build.xml, use ${some.prop} to get the value, for example:
<echo message="some.prop = ${some.prop}"/>