📜  Apache Ant导入任务

📅  最后修改于: 2020-12-26 13:57:49             🧑  作者: Mango

Apache Ant导入任务

导入任务用于将构建文件导入当前项目。使用ProjectHelper解析导入的文件。实际上,ProjectHelper负责解析导入的文件。

导入任务是顶级任务,因此不能在目标元素中使用。有两个与该任务有关的功能方面。

目标覆盖

如果当前文件中的目标也可用于导入的文件,则当前文件的目标将具有优先权。

特殊性质

导入的文件在当前主项目中是本地的。为了区分导入的文件和本地文件,Ant添加了一个属性,该属性包含导入的构建文件的路径。

注意:如果导入的文件不包含name属性,则不会设置它的属性。

Apache Ant导入任务属性

Attribute Description Required
file The file to import. Yes
optional If true, do not stop the build if the file does not exist. No
as Specifies the prefix prepended to the target names. No
prefixSeparator A separator to be used between the prefix and the target name. No

Apache Ant导入任务示例

以下代码从位于父目录中的common-targets.xml文件中导入目标。


    

它导入一个项目


    

它从公共目录内的targets.xml文件导入目标。