[ANNOUNCE] Apache Ivy 2.1.0-rc1 released

2009-04-02 Thread Maarten Coene
Mar 30, 2009 - The Ivy project is pleased to announce its 2.1.0-rc1 release. This is the first candidate release of Ivy 2.1.0. Ivy is a tool for managing (recording, tracking, resolving and reporting) project dependencies, characterized by flexibility, configurability, and tight integration with

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

AW: ant -p does not list all the targets

2009-04-02 Thread Jan.Materne
ant -p lists all targets, if no target has a description. The "hide-non-described-targets" behaviour is for having 'internal' targets the user doesnt need to know. But I dont think it would be a problem to have a new option "-pa" "-projecthelp-all" which will show all the targets. Jan >

AW: Project Specific Classpath to customise ant

2009-04-02 Thread Jan.Materne
> Is there a way to tell core ant to looking into project > specific class path > , in case one is definable (with the project xml defination > i.e in build.xml > file rather than ant -lib or environment classpath etc) for > some of the > custom classes which ant supports by way of properties. >

ant -p does not list all the targets

2009-04-02 Thread Raja Nagendra Kumar
Ant -p lists only the targests which has a description attribute value set. Is there any other command to simply see the list of targets even if the description tag is not set. Regards, Raja Nagendra Kumar, C.T.O www.tejasoft.com -- View this message in context: http://www.nabble.com/ant--p

Re: AW: ParallelExecutor

2009-04-02 Thread Matt Benson
--- On Thu, 4/2/09, Patrick O. Hart wrote: > From: Patrick O. Hart > Subject: Re: AW: ParallelExecutor > To: "Ant Developers List" > Date: Thursday, April 2, 2009, 7:42 AM > oh, I do the same thing as that. > > I looked and didn't find it. > > svn co http://svn.apache.org/repos/asf/ant/s

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

Project Specific Classpath to customise ant

2009-04-02 Thread Raja Nagendra Kumar
Hi, Is there a way to tell core ant to looking into project specific class path , in case one is definable (with the project xml defination i.e in build.xml file rather than ant -lib or environment classpath etc) for some of the custom classes which ant supports by way of properties. e.g each pr

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: ParallelExecutor

2009-04-02 Thread Patrick O. Hart
oh, I do the same thing as that. I looked and didn't find it. >>> 04/02/09 1:35 AM >>> > I have written a simple Executor for ant that automatically > parallelizes a build. What do you parallelize? The ParallelExecutor implementation in the sandbox http://svn.apache.org/repos/asf/ant/sand

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

2009-04-02 Thread Raja Nagendra Kumar
Hi, Jan, we are trying to set our own executor, however we are phasing the following issues * 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 * What is the default Execut