InterviewSolution
| 1. |
How Does Ant Read Properties? How To Set My Property System? |
|
Answer» ANT sets properties by order, when something is set, the later same properties cannot OVERWRITE the previous ones. This is opposite to your Java SETTERS. This give us a good leverage of preset all properties in one place, and overwrite only the needed. Give you an example here. You need password for a TASK, but don't want to share it with your team members, or not the developers outside your team. Ant sets properties by order, when something is set, the later same properties cannot overwrite the previous ones. This is opposite to your Java setters. This give us a good leverage of preset all properties in one place, and overwrite only the needed. Give you an example here. You need password for a task, but don't want to share it with your team members, or not the developers outside your team. |
|