Re: AW: AW: Ant arguments handling (Virtual Ant Targets handling using custom code)

2009-04-03 Thread Matt Benson
--- On Fri, 4/3/09, jan.mate...@rzf.fin-nrw.de wrote: > From: jan.mate...@rzf.fin-nrw.de > Subject: AW: AW: Ant arguments handling (Virtual Ant Targets handling using > custom code) > To: dev@ant.apache.org > Date: Friday, April 3, 2009, 12:03 AM > > > > * Could

AW: AW: Ant arguments handling (Virtual Ant Targets handling using custom code)

2009-04-02 Thread Jan.Materne
> > > * Could you pl. give more details on what the > > significance of > > > getSubProjectExecutor() > > > > No idea. > > > > ;) This allows the top executor to control what type of > executor is used to execute subprojects via > // and task that extend these. All > bundled Executors return

Re: AW: Ant arguments handling (Virtual Ant Targets handling using custom code)

2009-04-02 Thread Matt Benson
[SNIP] > > * Could you pl. give more details on what the > significance of > > getSubProjectExecutor() > > No idea. > ;) This allows the top executor to control what type of executor is used to execute subprojects via // and task that extend these. All bundled Executors return a SingleCheckE

AW: Ant arguments handling (Virtual Ant Targets handling using custom code)

2009-04-02 Thread Jan.Materne
> * it looks like we need to place the custom executor calss in > ant lib folder >- Is there a way to tell the ant to look for my project > libraries to find this custom executor Use the -lib option of Ant to include your jar. > * What is the default Executor the ant uses, so that for > c

Re: AW: Ant arguments handling

2009-04-01 Thread Raja Nagendra Kumar
Thank You Jan, This details of yours and Ant support to meet such needs is simple and helps us to designg a powerver target handling system for our Mobile Development/Porting Product Development Platform. Regards, Raja Nagendra Kumar, C.T.O www.tejasoft.com -- View this message in context: http

AW: Ant arguments handling

2009-04-01 Thread Jan.Materne
> I have a build xml with target say 'compile' > > However if the user says 'ant comp' or any other target which does not > exists, I want to handle them using a my custom code either a > macro or a ant > custom task or groovy. > > Is this possible, if yes, could you pl. let me know the right