RE: logic using ant

2005-03-08 Thread klute
Rob and all, That's exactly what i was looking for. I think properties file is the way to go in my case. Best, James --- "Anderson, Rob (Global Trade)" <[EMAIL PROTECTED]> wrote: > This is certainly possible. Depending on what > exactly you are trying to do, your method to acheive > it may diff

RE: logic using ant

2005-03-08 Thread Anderson, Rob (Global Trade)
This is certainly possible. Depending on what exactly you are trying to do, your method to acheive it may differ. Here is one method I use to get the same thing done in different environments. I create a properties file for each environment: dev.properties test.properties In the properties file

Re: logic using ant

2005-03-07 Thread Matt Benson
--- klute <[EMAIL PROTECTED]> wrote: > if some env variable indicates that the script is > running in windows env { >do this > } else { >do that > } > > is this possible? There are ways and ways (the most brute-force and least "Ant" being ant-contrib's if task), but it will probably help