RE: lists of lists

2004-09-27 Thread Dominique Devienne
> From: Ray Madigan [mailto:[EMAIL PROTECTED] > I have a complicated development environment and want to do something like > the following: > > all.list=alist,blist,clist > > alist=a,b,c > blist=d,e,f > clist=g,h,j > > > > > > > > > pr

RE: truncating a directory

2004-09-27 Thread Dominique Devienne
> > -Ursprüngliche Nachricht- > > Von: Greg Irvine [mailto:[EMAIL PROTECTED] > > I wish to move the contents of a number of directories to a single > > directory, using a wildcard based set. E.g. move build/*/** test/ > > > > i.e. Starting with: > > build/ > > dirA/ > > su

lists of lists

2004-09-27 Thread Ray Madigan
I have a complicated development environment and want to do something like the following: all.list=alist,blist,clist alist=a,b,c blist=d,e,f clist=g,h,j mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 4:06 PM To: [EMAIL PROTECTED] Subject: RE: truncating a directory Hi Jan

Re: Delete Files and SubFolders

2004-09-27 Thread Laconia Data Systems
Jeff et al I could never get delete dir= to work so I coded my own Regards, Martin- - Original Message - From: "Jeff Davidson" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Monday, September 27, 2004 6:10 PM Subject: RE: Delete Files and SubFolders Brent, If you're u

RE: truncating a directory

2004-09-27 Thread Greg Irvine
Hi Jan. Thanks for your response. Unfortunately and don't support nested s. I'll continue to investigate this though. Thanks for the advice. Greg. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, 27 September 2004 3:24 PM To: [EMAIL PROTECTED] Subje

RE: Delete Files and SubFolders

2004-09-27 Thread Jeff Davidson
Brent, If you're using Ant 1.6.2 (I do not know which earlier distributions this same syntax may apply to) I'm pretty sure you can simply use: http://ant.apache.org/manual/CoreTasks/delete.html (taken from http://ant.apache.org/manual/index.html) I was using this approach (under Windows) to i

Delete Files and SubFolders

2004-09-27 Thread Brent Bain
Hello: I am trying to use the following code to delete everything under subfolders (including deleting the subfolders themselves). I can't seem to get it to work. I'm not sure if it's because I'm using a or not. I'm using the antcontrib task to convert the path to a fileset () -- my code looks

RE: Automated installation creation

2004-09-27 Thread Jeff Davidson
Thank you, Robert. I'll check out NSIS. I've been doing more searching in the meantime and came across WIX: http://sourceforge.net/projects/wix "The Windows Installer XML (WiX) is a toolset that builds Windows installation packages from XML source code. The toolset supports a command line envir

Re: Automated installation creation

2004-09-27 Thread Robert r. Sanders
I have been using NSIS (http://nsis.sf.net) ; I tried out a Ant task for calling NSIS (lost the URL), but ended up just calling it via the exec task. NSIS has some really low-level parts mixed together with some high level bits and pieces; but it works, it has decent documentation (unlike the INNO

Re: Automated installation creation

2004-09-27 Thread Nicolas Mailhot
Le lundi 27 septembre 2004 Ã 11:46 -0700, Jeff Davidson a Ãcrit : > I know that most of you are packaging Java classes into jar/ear/war > files for deployment, but I know I'm not the only one using > CruiseControl/Ant to monitor/build non-Java projects. Are any of you in > that subset creating yo