打印/访问当前正在执行的Ant目标的名称

时间:2010-06-21 13:15:07

标签: ant

如何在构建文件中执行此操作?说我只想<echo/>这个名字?

2 个答案:

答案 0 :(得分:2)

当前执行目标名称没有内置属性。一些辩论on this is here

如果使用log4j将ant配置为这样的监听器,输出将显示每个目标的开始和结束,如下所示。致电ant build

D:\apache-ant-1.8.0RC1\bin>ant -lib D:\log4j\log4j\1.2.13 -listener org.apache.tools.ant.listener.Log4jListener build
Buildfile: D:\apache-ant-1.8.0RC1\bin\build.xml
11:39:34 INFO  Build started.

build:
11:39:34 INFO  Target "build" started.
      [echo] 100
11:39:34 INFO  Updating property file: D:\abc.properties
 [propertyfile] Updating property file: D:\abc.properties
 11:39:35 INFO  Target "build" finished.

BUILD SUCCESSFUL
Total time: 0 seconds

答案 1 :(得分:1)

我认为这个answer对于几乎相同的问题更令人满意,并且随时可以使用宏来提取值。