8

假设我有一个名为build_dev_linux.xml.

我的问题是

如何找到 ant 脚本 XML 文件自己的名称,build_dev_linux.xml 以便将其放在该 XML 文件中的变量或属性上。?

4

1 回答 1

14

Ant 定义了一个有用的内置属性列表:

basedir             the absolute path of the project's basedir (as set
                    with the basedir attribute of <project>).
ant.file            the absolute path of the buildfile.
ant.version         the version of Ant
ant.project.name    the name of the project that is currently executing;
                    it is set in the name attribute of <project>.
ant.project.default-target
                    the name of the currently executing project's
                    default target;  it is set via the default
                    attribute of <project>.
ant.project.invoked-targets
                    a comma separated list of the targets that have
                    been specified on the command line (the IDE,
                    an <ant> task ...) when invoking the current
                    project.
ant.java.version    the JVM version Ant detected; currently it can hold
                    the values "1.2", "1.3",
                    "1.4",  "1.5" and "1.6".
ant.core.lib        the absolute path of the ant.jar file.

ant.file物业是您所需要的。如果您只想要没有路径的文件名,那么您可以使用basename类似的任务

<basename file="${ant.file}" property="buildfile"/>
于 2013-02-13T04:41:48.093 回答