Description
The MD5 files for the Velocity downloads don't have the standard format.
V1.4
MD5 (velocity-1.4.zip) = 22cbd895f81dd4a6f17665b20b1cbcf71
V1.5B2
5f148e43c1f7c647ec73af0b26ea5ebe
The standard format is:
5f148e43c1f7c647ec73af0b26ea5ebe *velocity-1.5-beta2.zip
and can readily be autogenerated from Ant using the following snippet:
<echo message="Creating MD5 for ${path}"/>
<basename property="_base" file="${path}"/>
<checksum file="${path}" property="md5"/>
<echo message="${md5} *${_base}" file="${path}.md5"/>