Hello,
I want to use properties in dependency section of target and it doesn't
work. I think it'll be nice if this feature will be in ant - so than I
can specify dependecy of targets in separate file.
here goes what I was tried:
<target name="all-openidex" depends="${opendep}">
<echo message="Building module openidex..."/>
<echo message="Depends on ${opendep}"/>
<ant dir="${nbroot}/openidex" target="netbeans"/>
</target>
This fails with error:
Target `${opendep}' does not exist in this project. It is used from
target `all-openidex'.
I think it isn't correct. So I'm using ant version 1.2
Michal Zlamal