AW: How to concat string in ant

2009-06-04 Thread Knuplesch, Juergen
Hello, You use antcontrib, there you have the var type that will do the trick. In the end you should move the result into a property. Initialize it: And in the loop: And move it to property: -- Jürgen Knuplesch -Ursprüngliche Nachricht---

How to concat string in ant

2009-06-04 Thread Gao Lin
Hi: I want to concat some strings from a list to one string line. like: for example above, if the list of ${strs.list} is: {a, b, c}, how can I get a string with value: string = "a b c" ? do you guys know what is better way to implement

Re: Clarification on definition of "reference"

2009-06-04 Thread David Weintraub
*WHAT IS A REFERENCE? =* The easiest way to think of this is a reference is as a pointer to a resource in Ant. An Ant resource merely some sort of Ant object such as a property, a set of files, a path, a fileset, taskdefs, etc. * (Yes, a property is a resource, and could have a

Re: AW: ant-contrib: ispropertytrue

2009-06-04 Thread Ken Turner
Is this a lowercase problem? Juergen, you're a megastar! I've been beating my brain on this one for more than a week, and I really believed I'd been down that route, without any success. However, I tried it again and bingo! problem solved. Thanks for your help -- View this message in conte

RE: Help with war task

2009-06-04 Thread Moore, Kent
Setup different lib dir definitions in the war task and collect the references from where ever they happen to be: The combined set of references from the three folder

Re: Help with war task

2009-06-04 Thread Sushim Saini
Hi u can use following to do that i think will work for u -- Sushim On Thu, Jun 4, 2009 at 6:05 PM, Yellen Seram wrote: > Hi all, > > I'm trying to create a war file using the ant war task. > The problem is that I am not aware as to how I can link multiple folder

Re: Help with war task

2009-06-04 Thread Chris Green
Treat as two seperate tasks 1. Merging jar's into one directory 2. Create war file On Thu, Jun 4, 2009 at 1:35 PM, Yellen Seram wrote: > Hi all, > > I'm trying to create a war file using the ant war task. > The problem is that I am not aware as to how I can link multiple folder > locations to t

Help with war task

2009-06-04 Thread Yellen Seram
Hi all, I'm trying to create a war file using the ant war task. The problem is that I am not aware as to how I can link multiple folder locations to the lib dir inside war. Like for example, I have some jars in one folder and some other jars in some another folder and I want to put the jars from

RE: AW: Taskdef classloader issue: Solution found

2009-06-04 Thread Martin Gainty
Juergen and Team dave is a very intelligent fellow whose solutions which can be rather complex always work i am glad to hear he could provide a solution for this problem Martin Gainty __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confi

AW: Taskdef classloader issue: Solution found

2009-06-04 Thread Knuplesch, Juergen
Hello, The real solution for my taskdef problem looks like: David Wood writes about a similar problem and solved it by using: > > // Get the task class loader we used to load this tag. > AntClassLoader taskloader = > (AntClassLoader)this.getClass().getClassLoader(); > > // Shove it into th

AW: ant-contrib: ispropertytrue

2009-06-04 Thread Knuplesch, Juergen
Hello, Just a guess: In the link you gave the code is: Your code is: Is this a lowercase problem? Greetings Juergen -- Jürgen Knuplesch -Ursprüngliche Nachricht- Von: David Weintraub [mailto:qazw...@gmail.com] Gesendet: Mittwoch, 3. Juni 2009 19:46 An: Ant Users List Betreff: Re: