I\'m trying to get a target to build that has quite a long list of
and
This is even easier with versions of Ant > 1.6
<echo>${toString:classpath}</echo>
See http://ant.apache.org/manual/using.html#pathshortcut for more information
Use the pathconvert
task to convert a path to a property
<path id="classpath">
....
</path>
<pathconvert property="classpathProp" refid="classpath"/>
<echo>Classpath is ${classpathProp}</echo>
Docs for pathconvert.