假设我有一个名为的文件build_dev_linux.xml.
我的问题是
如何找到ant脚本XML文件自己的名称,build_dev_linux.xml
因此我可以将其放在该XML文件中的变量或属性上.
Geo*_*edy 13
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.
Run Code Online (Sandbox Code Playgroud)
该ant.file物业是您所需要的.如果您只想要没有路径的文件名,那么您可以使用basename类似的任务
<basename file="${ant.file}" property="buildfile"/>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3078 次 |
| 最近记录: |