java - How to set directory in antcallbacktask? -
in ant task in ant, have property named 'dir' can specify base directory used in called target. looking similar in 'ant callback' task. how can set directory in ant callback
<antcall>
, <antcallback>
tasks can used call other targets within same file. <antcallback>
has attributes of <antcall>
except antcallback
allows properties of called target accessed in calling target. more details, refer antcall , antcallback
however, <ant>
task used call target in ant file. hence, dir
attribute comes significance.
Comments
Post a Comment