RE: doubt in property

2008-06-04 Thread Anderson, Rob (Global Trade)
Name of properties are arbitrary. The location and value attributes are well documented... http://ant.apache.org/manual/CoreTasks/property.html -Rob A -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 04, 2008 7:22 AM To: user@ant.apache.org Subje

RE: doubt in property

2008-06-04 Thread Rebhan, Gilbert
] Sent: Wednesday, June 04, 2008 4:31 PM To: Ant Users List Subject: RE: doubt in property The property names are not significant. Think of location as properties stored as java.io.File objects and value as properties stored as java.lang.String objects; locations of files/directories vs a string

Re: doubt in property

2008-06-04 Thread Howard Lewis Ship
On Wed, Jun 4, 2008 at 7:22 AM, <[EMAIL PROTECTED]> wrote: > Hi All, > > > > I was trying to analyze following two lines. > > > > location="${log.dir}/db_catcs.log"/> > > > > > > Following are my doubts > > > > 1: is it necessary to write .file in the property name in the first > line?? This is

RE: doubt in property

2008-06-04 Thread Burgess, Benjamin
The property names are not significant. Think of location as properties stored as java.io.File objects and value as properties stored as java.lang.String objects; locations of files/directories vs a string of text. Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

RE: Doubt in property file

2008-05-19 Thread Irfan.Sayed
Thanks a lot Regards, Irfan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, May 19, 2008 1:11 PM To: user@ant.apache.org Subject: AW: Doubt in property file > 1: Can we have more than one property file defined in ANT's build.xml yes > 2: If there

Re: Doubt in property file

2008-05-19 Thread Carlos Alonso
Hi Irfan. Regarding to your first question, the answer is yes, you can use as much property files as you want. About the second question I'm not 100% sure, but I would say that the value is overriden so that the runtime value will be the one in the last loaded property file. Furthermore, I can