我使用的是Ant 1.9.4。我有两个jar文件,我想知道他们是否严格相等。当然不只是名字,还有里面的每个文件。我的猜测是在类似的东西上有一个MD5检查器,但我不知道是否可以通过ant。
谢谢你的帮助,
对
Ant core提供校验和任务:
Generates checksum for files. This task can also be used to perform checksum verifications.
可以与condition一起使用,如果二进制文件不相等,则构建失败,例如:
<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
条件用于文件比较,参见ant manual conditions