Apache Ant Tasks 简明教程

Apache Ant Tasks - Sleep

Description

Sleep 任务用于在短时间内休眠,当构建或部署过程需要在任务之间设置时间间隔时,此任务非常有用。

Properties

Sr.No

Attributes & Description

1

Hours 要添加到睡眠时间的小时数。

2

Minutes 要添加到睡眠时间的分钟数。

3

Seconds 要添加到睡眠时间秒数。

4

Milliseconds 要添加到睡眠时间的毫秒数。

5

Failonerror 控制是否因错误而中断构建的标志。

Example

Usage

使用以下内容创建 build.xml −

<?xml version="1.0"?>
<project name="TutorialPoint" default="info">
   <target name="info">
      <sleep seconds="2"/>
   </target>
</project>

Output

在上述构建文件上运行 Ant 会生成以下输出:

F:\tutorialspoint\ant>ant
Buildfile: F:\tutorialspoint\ant\build.xml

info:

BUILD SUCCESSFUL
Total time: 2 seconds