RE: Upgrading ANT from 1.6.2 to 1.8.5

2012-02-08 Thread Cuneo, Nicholas
I mixed those up, it should be 1.6.5 to 1.8.2, curse my lysdexia. Thanks, -Nick -Original Message- From: walla...@gmail.com [mailto:walla...@gmail.com] Sent: Tuesday, February 07, 2012 7:34 PM To: Ant Users List; Vimil Saju Subject: Re: Upgrading ANT from 1.6.2 to 1.8.5 No the latest ver

RE: Regarding exec task

2012-02-08 Thread Adam Bruss
Yes. Adam Bruss Senior Development Engineer AWR Corporation 11520 N. Port Washington Rd., Suite 201 Mequon, WI  53092  USA P: 1.262.240.0291 x104 F: 1.262.240.0294 E: abr...@awrcorp.com W: http://www.awrcorp.com -Original Message- From: Vimil Saju [mailto:vimils...@yahoo.com] Sent: Wedne

Re: Regarding exec task

2012-02-08 Thread Vimil Saju
This sounds good, but won't it kill processes that wasn't started by my script too? From: Adam Bruss To: Ant Users List ; Vimil Saju Sent: Wednesday, February 8, 2012 6:34 AM Subject: RE: Regarding exec task Set failonerror=false on the parent tasks. Get th

repreport task not working with m2compatible repository

2012-02-08 Thread vdalan
Hello, we intent to set up some repositories with maven2 compatible layout. I was wondering if there is any plan to fix this issue: https://issues.apache.org/jira/browse/IVY-503 thanks, alain -- View this message in context: http://old.nabble.com/repreport-task-not-working-with-m2compatible-r

Re: Selecting the largest or oldest files in a directory

2012-02-08 Thread Matt Benson
On Wed, Feb 8, 2012 at 7:08 AM, Harold Putman wrote: > Is there a way to select the "n" largest files or the n oldest files in a > directory? > Looking through all the standard > SelectorsI can't > see a way to do this. Is there some "ant-contrib"

RE: Regarding exec task

2012-02-08 Thread Adam Bruss
Set failonerror=false on the parent tasks. Get the return code. If return code not 0 then call a common target which executes your own personal "kill-zombie-processes" task and then fails the build using . "kill-zombie-processes" kills all possible still running child processes. You need to kno

Selecting the largest or oldest files in a directory

2012-02-08 Thread Harold Putman
Is there a way to select the "n" largest files or the n oldest files in a directory? Looking through all the standard SelectorsI can't see a way to do this. Is there some "ant-contrib"-y place I could find a custom selector that does something like