Re: Question

2006-09-10 Thread Prashant
You could also use a CustomSelector to select only interfaces. Something like : Hope this helps -Prashant RADEMAKERS Tanguy wrote: if your interfaces follow some kind of a naming pattern ("IInterfaceName.java"), you can select them all using

Re: JUnit4.1 support in Ant 1.7 Beta

2006-09-10 Thread Antoine Levy-Lambert
Hello Mirko, I have the impression that no one answered your posting(s). By the way, there is no need to send 3 times the same email. I would suggest that you create a bug report under http://issues.apache.org/bugzilla . Let's hope that someone will have the time to work on it. Regards, Anto

Re: Adding variable no of elements to task

2006-09-10 Thread Antoine Levy-Lambert
Holger, Original-Nachricht Datum: Fri, 8 Sep 2006 13:57:21 +0200 Von: Holger Rauch <[EMAIL PROTECTED]> An: user@ant.apache.org Betreff: Adding variable no of elements to task > - The stylesheet parameters supposed to be passed to the XSLT processor > should be configurable fr

RE: antcontrib:for

2006-09-10 Thread Ray Madigan
if I echo the @bar property like this the result is: ${${proj}} It doesn't look up the value of the inner ${proj} and the ${} can't find a property for '${proj}' -Original Message- From: Rick Genter [mailto:[EMAIL PROTECTED] Sent: Sunday, September 10, 2006 8:4

Re: antcontrib:for

2006-09-10 Thread Scot P. Floess
Ah good point. I didn't read the comment above the - my bad and my apologies... Rick Genter wrote: Try ${${proj}}. -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Sun 9/10/2006 11:52 AM To: Ant Users List Subject: antcontrib:for I have a target that I pass in

RE: antcontrib:for

2006-09-10 Thread Rick Genter
Try ${${proj}}. -Original Message- From: Ray Madigan [mailto:[EMAIL PROTECTED] Sent: Sun 9/10/2006 11:52 AM To: Ant Users List Subject: antcontrib:for I have a target that I pass in a variable that I would like to fetch the value of the property to us as the list parameter in a for tag.

Re: antcontrib:for

2006-09-10 Thread Scot P. Floess
That should work fine... Not to be "smart" but did you try this first before posting? I only ask because, you clearly wrote the script and could easily test... Ray Madigan wrote: I have a target that I pass in a variable that I would like to fetch the value of the property to us as the list

antcontrib:for

2006-09-10 Thread Ray Madigan
I have a target that I pass in a variable that I would like to fetch the value of the property to us as the list parameter in a for tag. ... Is this possible? any suggestions would be appreciated. Thanks -