| Author |
variable in depends?
|
derek moose
Greenhorn
Joined: Apr 05, 2004
Posts: 1
|
|
i want to use a variable in depends. i.e. this doesn't work - is there any other way i can achieve this effect? (what i want to do is have the ant script parse eclipse's .classpath information and alter the dependencies automatically). any help appreciated.
|
 |
eammon bannon
Ranch Hand
Joined: Mar 16, 2004
Posts: 140
|
|
Ant does give you conditional logic - see the <condition /> tag. You can set a property and check its value this way. It means that instead of your target depending on something else, it would always run, but conditionalliy based on this property. Something like:
|
 |
Ilja Preuss
author
Sheriff
Joined: Jul 11, 2001
Posts: 14112
|
|
Originally posted by eammon bannon: Ant does give you conditional logic - see the <condition /> tag. You can set a property and check its value this way. It means that instead of your target depending on something else, it would always run, but conditionalliy based on this property. Something like:
Sorry, that's wrong - the condition task *sets* the property based on the conditions specified inside. It doesn't execute any "actions".
|
The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become. Your integrity is your destiny - it is the light that guides your way. - Heraclitus
|
 |
eammon bannon
Ranch Hand
Joined: Mar 16, 2004
Posts: 140
|
|
Woops! I'll remind myself of the documentation before posting in future. Cheers for the correction Ilja.
|
 |
 |
|
|
subject: variable in depends?
|
|
|