Apache Ant 任务 - 导入


描述

导入任务将另一个构建文件导入到项目中。

特性

先生编号 属性和描述
1

文件

要导入的文件。如果这是相对文件名,则文件名将相对于导入文件进行解析。注意:这与大多数其他 Ant 文件属性不同,在大多数其他 Ant 文件属性中,相对文件是相对于 basedir 解析的。

2

选修的

如果为 true,则在文件不存在时不要停止构建。

3

作为

指定目标名称前面的前缀。

4

前缀分隔符

指定前缀和目标名称之间使用的分隔符。

例子

用法

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

<?xml version="1.0"?>
<project name="TutorialPoint" default="info">
   <import file="nested.xml" as="nested"/>
   <target name="info" depends="nested.echo">      
   </target>
</project>

以及包含以下内容的nested.xml -

<project>
   <target name="setUp">
      <property name="build.dir" value="build"/>
   </target>
   <target name="echo" depends="setUp">
      <echo>build.dir is set as build</echo>
   </target>
</project>

上面的脚本将在当前目录中创建一个ear文件作为myapp.ear。

输出

在上面的构建文件上运行 Ant 会产生以下输出 -

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

setUp:

nested.echo:
   [echo] build.dir is set as build

info:

BUILD SUCCESSFUL
Total time: 0 seconds