Re: Issues With Quotes

2013-11-06 Thread Dave Westerman
nd for this. Thanks! DLW From: Earl Hood To: Ant Users List , Date: 11/05/2013 08:23 PM Subject:Re: Issues With Quotes Sent by:earlh...@gmail.com On 11/5/13, Dave Westerman wrote: > I'm passing in an attribute that contains a value to search for in a file

Re: Issues With Quotes

2013-11-05 Thread Earl Hood
On 11/5/13, Dave Westerman wrote: > I'm passing in an attribute that contains a value to search for in a file > in Windows. I'm doing this: > > resultproperty="retcode" > outputproperty="output"> > > I normally avoid using since some additional parsing is done by Ant (or t

Re: Issues upgrading from 1.4 to 2.0.0

2009-02-02 Thread Maarten Coene
Martin, A (probably incomplete) list of incompatibilites are listed in the release notes: http://ant.apache.org/ivy/history/2.0.0/release-notes.html Maarten - Original Message From: Martin Eigenbrodt To: ivy-u...@ant.apache.org Sent: Sunday, February 1, 2009 6:24:56 PM Subject: Iss

Re: Issues using a path

2008-08-19 Thread Dominique Devienne
On Tue, Aug 19, 2008 at 9:44 AM, Eric Wood <[EMAIL PROTECTED]> wrote: > Only the two good jars are found in the path reference. I want to know > if an

Re: Issues with delete -- manual and FAQ incorrect (?)

2008-06-24 Thread Andrew Clegg
2008/6/24 Stefan Bodewig <[EMAIL PROTECTED]>: > In most cases Ant's behavior probably is exactly what is intended by > many people. You don't want to lose your real work when removing > backups recursively (deleting the directories that don't contain any > backups because no file matched the incl

Re: Issues with delete -- manual and FAQ incorrect (?)

2008-06-24 Thread Stefan Bodewig
On Tue, 24 Jun 2008, Andrew Clegg <[EMAIL PROTECTED]> wrote: > I have just had a couple of thoughts which I'll post here for the > benefit of others who might be in a similar situation. > > I think my original problem is because each of the subdirectories in > the autosrc tree contains an ignored

Re: Issues with delete -- manual and FAQ incorrect (?)

2008-06-24 Thread Andrew Clegg
I have just had a couple of thoughts which I'll post here for the benefit of others who might be in a similar situation. I think my original problem is because each of the subdirectories in the autosrc tree contains an ignored .svn directory, meaning that none of them are ever completely empty, so

Re: Issues with delete -- manual and FAQ incorrect (?)

2008-06-24 Thread Andrew Clegg
2008/6/24 Stefan Bodewig <[EMAIL PROTECTED]>: > I don't think your directories info and src match the includes pattern > **/* which means "at least one directory level deeper than base". > What happens if you remove the includes attribute completely? That works! Thanks. But this means the manual

Re: Issues with delete -- manual and FAQ incorrect (?)

2008-06-23 Thread Stefan Bodewig
On Mon, 23 Jun 2008, Andrew Clegg <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I'm having problems setting a task to delete everything in a > particular directory. But wait, before you say "this is a FAQ", I've > tested the solution given in the manual and FAQ, and it doesn't > actually work. >

RE: issues with SQL task and the PRINT statement in external .sql files

2008-04-18 Thread Nathan Hattala
helps you understand what seems to be going on Thanks, -nathan -Original Message- From: Steve Loughran [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2008 7:46 AM To: Ant Users List Subject: Re: issues with SQL task and the PRINT statement in external .sql files Nathan Hatta

Re: Issues with install and iBiblio

2008-04-11 Thread Xavier Hanin
On Thu, Apr 10, 2008 at 11:33 AM, ar92 <[EMAIL PROTECTED]> wrote: > > The cleancache fixed the problem I had with log4j dependencies, but as you > said there are jars missing or unretrievable. For me it bombed when > getting > jmx, but at least the dependencies from the POM are now in the ivy fil

Re: issues with SQL task and the PRINT statement in external .sql files

2008-04-01 Thread Steve Loughran
Nathan Hattala wrote: Hello, So I have been banging my head against a wall it seems because I have been trying to automate the database build and deployment process for our software. The goal I have is using ANT and the sql task, to execute an existing .sql file that was developed and placed

Re: Issues with building custom Ant task and using it in same build?

2008-03-25 Thread Peter Reilly
On Tue, Mar 25, 2008 at 10:50 PM, Karr, David <[EMAIL PROTECTED]> wrote: > I have to write a custom Ant task to get some detailed data out of > Perforce into some properties, and then I need to use those properties > in following steps of a build. Are there any difficulties in having my > build

Re: Issues with ANT 1.7 and Linux???

2007-02-16 Thread Andrew Close
On 2/16/07, James Abley <[EMAIL PROTECTED]> wrote: Sorry, I thought Antoine had answered this, but just to be explicit: Paths are (always in my experience with the filesystems I've used) case-sensitive under Linux. Have you tried: ls -l /home/scm/CC_BUILD/projects/RSA/build.properties [EMAIL

Re: Issues with ANT 1.7 and Linux???

2007-02-16 Thread Andrew Close
Steve, thanks for the reply. On 2/16/07, Steve Loughran <[EMAIL PROTECTED]> wrote: Andrew Close wrote: > so when i run ANT in debug mode i see the following: > > [property] Loading /home/scm/CC_BUILD/projects/RSA/build.properties > [property] Unable to find property file: > /home/scm/CC_BUILD/

Re: Issues with ANT 1.7 and Linux???

2007-02-16 Thread James Abley
Sorry, I thought Antoine had answered this, but just to be explicit: Paths are (always in my experience with the filesystems I've used) case-sensitive under Linux. Have you tried: ls -l /home/scm/CC_BUILD/projects/RSA/build.properties and ls -l /home/scm/CC_Build/projects/RSA/build.properti

Re: Issues with ANT 1.7 and Linux???

2007-02-16 Thread Steve Loughran
Andrew Close wrote: so when i run ANT in debug mode i see the following: [property] Loading /home/scm/CC_BUILD/projects/RSA/build.properties [property] Unable to find property file: /home/scm/CC_BUILD/projects/RSA/build.properties obviously ANT was able to translate the ${dev.root} property co

Re: Issues with ANT 1.7 and Linux???

2007-02-16 Thread Andrew Close
On 2/15/07, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: From your log file, may be your property file should be loaded from > /home/scm/CC_Build/projects/RSA/build.properties not from > /home/scm/CC_BUILD/projects/RSA/build.properties Best regards, Antoine, thanks for your reply. the

Re: Issues with ANT 1.7 and Linux???

2007-02-15 Thread Antoine Levy-Lambert
From your log file, may be your property file should be loaded from /home/scm/CC_Build/projects/RSA/build.properties not from /home/scm/CC_BUILD/projects/RSA/build.properties Best regards, Antoine On Feb 15, 2007, at 4:04 PM, Andrew Close wrote: hi all, i did a bit of Googling and sea

Re: issues

2004-12-17 Thread Ivan Ivanov
Thank you Peter, it saved me lots of trouble. Ivan --- Peter Reilly <[EMAIL PROTECTED]> wrote: > You can use a trim filter: > > > > > > > It will remove the trailing spaces. > > Peter __ Do you Yahoo!? Send holiday ema

RE: issues

2004-12-17 Thread Rebhan, Gilbert
Hi, had a similar problem here, when sending an email It's always good to have a detailled look onto your build.xml with f.e. Ultra Edit and feature 'Non printable characters on' enabled. I believe other editors have a similar feature. There's also that 'thing' with i stumbled across: if yo

Re: issues

2004-12-17 Thread Peter Reilly
You can use a trim filter: It will remove the trailing spaces. Peter Ivan Ivanov wrote: Dear Colleagues, Today I noticed that our night build scripts have stooped sending their emails with MailLogger and after 4 hours of debugging I found what is the problem. I define MailLogger p

Re: Issues with vs

2004-05-14 Thread Matt Benson
...however, output/error are incompatible with spawn="true". -Matt --- Robert Clark <[EMAIL PROTECTED]> wrote: > On Fri, 2004-05-14 at 08:38, Robert Mark Bram wrote: > > When using java task anyway, I found a way to > supply a name for the new > > window.. > > > > > > classpath="

Re: Issues with vs

2004-05-14 Thread Robert Clark
On Fri, 2004-05-14 at 08:38, Robert Mark Bram wrote: > When using java task anyway, I found a way to supply a name for the new > window.. > >classpath="${clink_jar}:${xerces_jar}:${xml_jar}:${classes}" > fork="true" > spawn="true"> > > > >