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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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:
|
|||
|
|