我的ant脚本仅适用于版本> = 1.8。我想检查脚本中的版本,以便在安装较小版本时显示错误。
答案 0 :(得分:10)
以下是可能有用的代码片段:
<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>
答案 1 :(得分:9)
无需创建目标,您可以在脚本开头使用fail + antversion:
<fail message="Ant 1.8+ required">
<condition>
<not><antversion atleast="1.8" /></not>
</condition>
</fail>
答案 2 :(得分:8)
Ant具有内置属性ant.version
:
<project default="print-version">
<target name="print-version">
<echo>${ant.version}</echo>
</target>
</project>
答案 3 :(得分:5)
ANT 1.7版引入了专门的antversion任务。
此功能是ANT可以检查的几个conditions的一部分。
答案 4 :(得分:0)
在构建脚本的开头添加以下内容:
<!-- Check Ant Version -->
<property name="ant.version.required" value="1.9.8" />
<fail message="Ant version ${ant.version.required} or newer is required
(${ant.version} is installed)">
<condition>
<not><antversion atleast="${ant.version.required}" /></not>
</condition>
</fail>
如果Ant版本低于要求,则会产生如下错误:
需要Ant版本1.9.8或更高版本(已安装2016年4月9日编译的Apache Ant™版本1.9.7)
答案 5 :(得分:0)
在终端类型中,只需执行:
ant -version