如何在 Ant 脚本中检查 Ant 版本
我的蚂蚁脚本仅适用于版本 >=1.8。我想检查脚本中的版本,以便在安装了较小的版本时显示错误。
下面是一个可能有帮助的代码片段:
<property name="version.required" value="1.8" />
<target name="version_check">
<antversion property="version.running" />
<fail message="FATAL ERROR: The running Ant version, ${version.running}, is too old.">
<condition>
<not>
<antversion atleast="${version.required}" />
</not>
</condition>
</fail>
</target>
<target name="doit" depends="version_check">
<echo level="info" message="The running version of ant, ${version.running}, is new enough" />
</target>
无需创建目标,您可以在脚本开头使用 fail+antversion:
<fail message="Ant 1.8+ required">
<condition>
<not><antversion atleast="1.8" /></not>
</condition>
</fail>