Is there a way to output the ant version to the console if running ant build from Eclipse
I want to embed the ant version inf开发者_如何学Cormation into the console output when using Ant build. Any way?
try
<echo>${ant.version}</echo>
In your build file
精彩评论