Short version of the ant version string?

2013-11-22 Thread Andre-John Mas
Hi, As part of my work on issue 55489, Allow specifying of alternative user agent for the 'get' task, I need to be able to include the Ant version string in the user-agent (Apache Ant/0.0), but using the following: getProject().getProperty(MagicNames.ANT_VERSION) or Main.getVersion() both

Re: Short version of the ant version string?

2013-11-22 Thread Antoine Levy Lambert
Hello Andre, yes, adding a Main.getShortVersion() would be acceptable. are you after a version string containing only digits and dots like what AntVersion.getVersion() is computing ? The version from version.txt sometimes has an alphabetic suffix like 1.7.0beta or 1.9.0alpha or 1.9.0rc1.

Re: Short version of the ant version string?

2013-11-22 Thread Stefan Bodewig
On 2013-11-23, Andre-John Mas wrote: As part of my work on issue 55489, Allow specifying of alternative user agent for the 'get' task, I need to be able to include the Ant version string in the user-agent (Apache Ant/0.0), but using the following: