AW: append value to existing property

2009-01-13 Thread Jan.Materne
>Is there a way to append a new value to an existing property. No, properties are immutable. >I have a loop which will determine a new value each time and >is stored in property a_value How do you loop? Which value do you want to calculate? Maybe there are other ways ... Jan --

append value to existing property

2009-01-13 Thread Stan Kwan
Hi all, Is there a way to append a new value to an existing property. for example I have a loop which will determine a new value each time and is stored in property a_value so i want to do something like so in the end i want the value of the_list to be aaa,bbb the a_value property will th

Re: How can I exclude this directory?

2009-01-13 Thread Brian Stephenson
I believe exclude in the WAR task only accepts files and file patterns, not straight directory names. You might try name="dojo/**"/> Brian Stephenson ThorTech Solutions www.thortech-solutions.com (914) 302-7638 [work] (914) 302-7641 [fax] On Jan 13, 2009, at 1:39 PM, > wrote: Hi, I'm

Re: How can I exclude this directory?

2009-01-13 Thread Greg Roodt
Hi I have never used the war task, but this looks like a FileSet problem. Try dojo/** Cheers Greg On Tue, Jan 13, 2009 at 6:39 PM, wrote: > Hi, > > I'm using Ant 1.6 and trying to build my WAR file. Im my web root > directory, I have a directory named "dojo" that I wish to exclude from my >

Re: How to import a Java class from a package in a different folder

2009-01-13 Thread Patrick Waugh
This isn't an ANT issue, you would create a user library with Eclipse and add it to your build path. On Tue, Jan 13, 2009 at 8:07 AM, ilango_g wrote: > > Hi > I have an Eclipse project that generates a EAR. My problem is as follows: > The root folder of the project is: > DC-Integrated > > Unde

How can I exclude this directory?

2009-01-13 Thread dave.alvarado
Hi, I'm using Ant 1.6 and trying to build my WAR file. Im my web root directory, I have a directory named "dojo" that I wish to exclude from my WAR file. Here is how I construct the WAR file ...

Re: Build war file and deploy to local Tomcat using Ant and Ivy

2009-01-13 Thread Les Hazlewood
Hi Kent, You don't pull servlet-api from tomcat - you would configure one of Ivy's resolvers to point to a repository - say, the public Maven 2 repository. Then it auto-downloads it if necessary. Here is a line in my ivy.xml file that does exactly this: This assumes you have an ivy resolver th

How to import a Java class from a package in a different folder

2009-01-13 Thread ilango_g
Hi I have an Eclipse project that generates a EAR. My problem is as follows: The root folder of the project is: DC-Integrated Under DC-Integrated, I have a folder called 'common' and a structure (with a package) under it as: java/src/com.dexcenter.util/LauncherClient.java Under the same