Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a novice in Java. In my Ant file, I would like to create a target "init" which checks if the properties declared exist (else it affects them a default value), but I don't have any idea how to do.

share|improve this question

1 Answer

It's easier than you'd think. Just set them in the init target. In Ant, setting properties is "first setter wins" - if they are already set, the setting in the init target will be ignored.

There are several ways to set properties, but the most commonly used is:

<property name="foo" value="dist"/>
share|improve this answer
Ok, effectively, it's easier I thought. Thank you – benygel Jan 17 at 0:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.