With ant
there exists the echo
markup:
<echo message="Hello, world"/>
but it seems useless. I need to check values in an ant script, e.g.
<property file="${user.home}/build.properties"/>
<echo message="${file}" />
but it only yields:
[echo] ${file}
How I can have Ant display the value of the file
property?