我编写的许多 ant 脚本都使用默认值,而这些默认值几乎是排他性的。 即,我只是偶尔想在没有默认值的情况下运行它。
很多时候,这些脚本需要足够的时间,因此在运行时执行其他操作是有意义的,例如喝咖啡或使用小开发人员室。当然,如果上面有提示,而你忘记了,那么,你就是SOL。
有什么方法可以在提示上设置超时,因此如果没有输入,哦,假设 30 秒,它只接受默认值,以便当我回到工作站时,我已经准备好了我的战争/jar/任何东西?类似的东西
<input addproperty="branch.tag"
defaultvalue="dev"
timeout="30000">
Which branch would you like to build?
</input>
现在显然这个超时功能不存在,但你知道我想要完成什么。
选项 1:将生成配置为自动或交互式运行
您可以通过在属性文件中提供默认输入值来将生成配置为全自动运行,而不是使输入提示超时。
默认属性
Which branch would you like to build?=dev
要在交互式构建和自动构建之间切换,可以在调用 Ant 时指定要使用的输入处理程序的类型:
自动化构建
$ ant -Dhandler.type=propertyfile
交互式构建
$ ant -Dhandler.type=default
需要使用嵌套的 <handler>
元素指定输入处理程序。
<input addproperty="branch.tag" defaultvalue="dev"
message="Which branch would you like to build?">
<handler type="${handler.type}" />
</input>
最后一步是通过定义ant.input.properties
系统属性来指定PropertyFileInputHandler
的属性文件。
Linux目录
export ANT_OPTS=-Dant.input.properties=default.properties
选项 2:在宏定义中使用 AntContrib Trycatch 和 Parallel
<taskdef name="trycatch" classname="net.sf.antcontrib.logic.TryCatchTask">
<classpath>
<pathelement location="/your/path/to/ant-contrib.jar"/>
</classpath>
</taskdef>
<macrodef name="input-timeout">
<attribute name="addproperty" />
<attribute name="defaultvalue" default="" />
<attribute name="handlertype" default="default" />
<attribute name="message" default="" />
<attribute name="timeout" default="30000" />
<text name="text" default="" />
<sequential>
<trycatch>
<try>
<parallel threadcount="1" timeout="@{timeout}">
<input addproperty="@{addproperty}"
defaultvalue="@{defaultvalue}"
message="@{message}">
<handler type="@{handlertype}" />
@{text}
</input>
</parallel>
</try>
<catch>
<property name="@{addproperty}" value="@{defaultvalue}" />
</catch>
</trycatch>
</sequential>
</macrodef>
<target name="test-timeout">
<input-timeout addproperty="branch.tag" defaultvalue="dev"
message="Which branch would you like to build?"
timeout="5000" />
<echo message="${branch.tag}" />
</target>
选项 3:编写自定义 Ant 任务
实施留给读者作为练习。