Re: tomcat task under https

2009-03-26 Thread Antoine Levy Lambert
I would say there must be a solution to get it to work, but first you must find out where it is hurting. The pain point is probably neither ant nor tomcat but rather to find out whether for instance you need to start ant with system properties just as javax.net.ssl.keystore, javax.net.ssl. ...

Re: defining a path to use as a fileset

2009-03-26 Thread Antoine Levy Lambert
Hello Jeffrey, well, the answers which come to my mind are : - checkstyle should be changed to support a sourcepath if it does not support a sourcepath yet, - the workaround is to copy your n folders of source code into one staging area, and run checkstyle against this staging area where you

Re: Delete N directories that match a regexp

2009-03-26 Thread Gilbert Rebhan
Michael Delaney schrieb: > I'm look for a way, with using ant "out of the box", to find a list of > directories and sort them via date then deleted the oldest three > directories. i would go with antcontrib , see = http://ant-contrib.sourceforge.net/tasks/tasks/timestampselector.html ok, it's no

Re: Delete N directories that match a regexp

2009-03-26 Thread Matt Benson
Glad to know you're using the resourcecollection stuff in anger and getting some mileage out of it. Unfortunately it seems you've hit on a genuine lack... :) Firstly your date-sorted resourcecollection should be a dirset, but then you still need a decent way to round up the children of those

Re: AW: setup environment for java task

2009-03-26 Thread JohnBurrows
So, basically it sounds like you are trying to setup some kind of smoke test environment. I suggest you decide how involved your build process will be and maybe break it down into pieces to better manage it. 1) Build environment scripts: Such as your build.xml ant script that is kicked off

Delete N directories that match a regexp

2009-03-26 Thread Michael Delaney
I'm look for a way, with using ant "out of the box", to find a list of directories and sort them via date then deleted the oldest three directories. Thus far I've been able to sort the directories, take the last three but I can't seem to figure out how to delete the actual directory; see atta

RE: Artifact Lock Failures

2009-03-26 Thread Brown, Carlton
I did not know there is an actual lockfile, where is it located? This might explain some selective lock failures I have been experiencing during resolve. -Original Message- From: Sam Berlin [mailto:sber...@gmail.com] Sent: Wednesday, March 25, 2009 5:38 PM To: ivy-u...@ant.apache.org Su

defining a path to use as a fileset

2009-03-26 Thread Dever, Jeffrey
I have a definition for my sourcepath as a path task and wish to use this in several places in my build, including where I need a fileset type. I have several sub projects that are similar so I am trying to keep the targets generic and parameterize the sub projects as much as possible. One of the