For ant to be able to read and execute an encrypted build.xml you'd either need to store build.xml in an encypted filesystem or modify Ant so that it could decrypt build.xml.
Realistically, it's better just to hide the password someplace where it can't be seen by casual viewers and pass it in as an externally-supplied property. You could also make the Ant script prompt for a password, but as a rule, Ant scripts should avoid being interactive.
Customer surveys are for companies who didn't pay proper attention to begin with.
Tim Holloway wrote:For ant to be able to read and execute an encrypted build.xml you'd either need to store build.xml in an encypted filesystem or modify Ant so that it could decrypt build.xml.
Realistically, it's better just to hide the password someplace where it can't be seen by casual viewers and pass it in as an externally-supplied property. You could also make the Ant script prompt for a password, but as a rule, Ant scripts should avoid being interactive.
Thanks I think you are right. it would be better to get it with an enternally-supplied property or I can use prompts.