我正在使用Ant 1.9.4。 我有两个jar文件,我想知道它们是否严格等于。 当然不仅是名称,还包括其中的每个文件。 我的猜测就是像这样的MD5检查器,但我不知道是否可以通过蚂蚁。
感谢您的帮助,
此致
答案 0 :(得分:1)
Ant核心提供{{3}}:
Generates checksum for files. This task can also be used to perform checksum verifications.
如果二进制文件不相等,可以与conditon一起使用以使构建失败,例如: :
<checksum file="path/to/foo.jar" property="fooMD5"/>
<fail message="Binaries not equal !!">
<condition>
<not>
<checksum file="path/to/fooo.jar" property="${fooMD5}"/>
</not>
</condition>
</fail>
文件比较还有filesmatch
和resourcesmatch
条件,请参阅checksum task。