RE: how to do conditional processing in ant

2009-07-19 Thread Scot P. Floess
ormation within your environment variables to do the job - nothing conditional about it... -Original Message- From Scot P. Floess Sent Fri 7/17/2009 4:59 PM To Ant Users List Subject RE: how to do conditional processing in ant Ah - so really dev, sit, prod and uat are located in disjoint dire

Re: how to do conditional processing in ant

2009-07-19 Thread Edumudi Viswanath
5 PM To Ant Users List Subject Re: how to do conditional processing in ant There are two general ways to do conditional processing. One is to use the "if" or "unless" parame

RE: how to do conditional processing in ant

2009-07-19 Thread Edumudi Viswanath
59 PM To Ant Users List Subject RE: how to do conditional processing in ant Ah - so really dev, sit, prod and uat are located in disjoint directories? For example: /foo/dev, /bar/sit, /alpha/prod and /beta/uat If so, I suppose you could do something like this:

Re: how to do conditional processing in ant

2009-07-17 Thread David Weintraub
There are two general ways to do conditional processing. One is to use the "if" or "unless" parameters on the task themselves: <...> <...> <...> <...> The above would execute the "corr

RE: how to do conditional processing in ant

2009-07-17 Thread Scot P. Floess
, July 17, 2009 8:39 PM To: Ant Users List Subject: RE: how to do conditional processing in ant Well it seems to me you are really trying to copy files as denoted by a property - is this correct? So, for example lets say you do this: ant -Denvv=production -Dssltype=1SSL eardirect or ant -Den

Re: how to do conditional processing in ant

2009-07-17 Thread Michael George
xyz folder. -Original Message- From: Scot P. Floess [mailto:sflo...@nc.rr.com] Sent: Friday, July 17, 2009 8:39 PM To: Ant Users List Subject: RE: how to do conditional processing in ant Well it seems to me you are really trying to copy files as denoted by a property - is this correct? So,

RE: how to do conditional processing in ant

2009-07-17 Thread edumudi.viswan...@oracle.com
xyz folder. -Original Message- From: Scot P. Floess [mailto:sflo...@nc.rr.com] Sent: Friday, July 17, 2009 8:39 PM To: Ant Users List Subject: RE: how to do conditional processing in ant Well it seems to me you are really trying to copy files as denoted by a property - is this correct? So,

RE: how to do conditional processing in ant

2009-07-17 Thread Scot P. Floess
do conditional processing in ant Do you need to conditionally copy files or copy files based on a dir defined in a property? On Fri, 17 Jul 2009, edumudi.viswan...@oracle.com wrote: Hi Friends, I know how to pass more than one command line arguments /parameters to a task in ant. Ex

RE: how to do conditional processing in ant

2009-07-17 Thread edumudi.viswan...@oracle.com
Conditional copy of files from a directory XYZ/prod/1ssl to xyz/ directory. -Original Message- From: Scot P. Floess [mailto:sflo...@nc.rr.com] Sent: Friday, July 17, 2009 8:06 PM To: Ant Users List Subject: Re: how to do conditional processing in ant Do you need to conditionally copy

Re: how to do conditional processing in ant

2009-07-17 Thread Scot P. Floess
Do you need to conditionally copy files or copy files based on a dir defined in a property? On Fri, 17 Jul 2009, edumudi.viswan...@oracle.com wrote: Hi Friends, I know how to pass more than one command line arguments /parameters to a task in ant. Ex: Command prompt>ant -Denvv=produc