Thanks for the reply.
Is that property file kept under source code control too?
If so how does Ant know which property file to bring in?
Thanks
Brett Ramdeen <[EMAIL PROTECTED]> writes:
> >> How do people manage to keep build.xml (and any other wrapper files,
> >> if that is the recommended way to go) under source code control and
> >> still have site specific configurations available.
>
> One solution we have employed is to have site/developer specific information
> in a property file. The other option would be to use the -D option to pass
> properties in when ant is run. However, the former is easier since each
> developer has to update the properties file once and then forget about it.
>
> Brett