Re: Odd Behavior

2010-07-20 Thread Ben Matz
Ya, so I viewed the selenium-server.jar file and indeed it was bundled with it's own version of ANT. Weird. So instead of using that jar I used the selenium-server-coreless.jar, which didn't have a ANT bundled in it and that WORKED. Thanks Stefan pointing me in the right direction! BTW -- I

Re: Odd Behavior

2010-07-20 Thread Ben Matz
, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. From: bm...@bidsync.com To: user@ant.apache.org Date: Mon, 19 Jul 2010 10:45:55 -0600 Subject: Odd Behavior I am a total newbie with ANT so any ideas as to what is causing the following would be awesome. I

Odd Behavior

2010-07-19 Thread Ben Matz
I am a total newbie with ANT so any ideas as to what is causing the following would be awesome. I added a couple Selenium jars to my build lib and when I run ANT it reverts my ANT version to 1.6.5 (per calling ant -version) whereas it is actually 1.7.1? When I remove the jars the version goes

RE: Odd Behavior

2010-07-19 Thread Martin Gainty
. From: bm...@bidsync.com To: user@ant.apache.org Date: Mon, 19 Jul 2010 10:45:55 -0600 Subject: Odd Behavior I am a total newbie with ANT so any ideas as to what is causing the following would be awesome. I added a couple Selenium jars to my build lib and when I run ANT it reverts my ANT

Re: Odd Behavior

2010-07-19 Thread Stefan Bodewig
On 2010-07-19, Ben Matz wrote: I added a couple Selenium jars to my build lib and when I run ANT it reverts my ANT version to 1.6.5 (per calling ant -version) whereas it is actually 1.7.1? When I remove the jars the version goes back to 1.7.1?! Is that bizarre or what? I assume you've

Re: Odd Behavior

2007-01-05 Thread Steve Loughran
Alasdair Young wrote: I bought the book Pragmatic Project Automation and tried following the steps. (There is a free chapter online to do with CC) Unfortunately this book is outdated and many of the examples do not work, use deprecated methods etc. Getting CC working with subversion was also

Re: Odd Behavior

2007-01-04 Thread Steve Loughran
Alasdair Young wrote: Fixed it. (I spent 2 hours on this, and just after I hit send, I realise that there was one more place to check :) cruise control has a cruisecontrol/lib directory with ant.jar in it. You need to ensure that ant.jar, ant-junit.jar and junit.jar are all the right versions

Re: Odd Behavior

2007-01-04 Thread Res Pons
. Original Message Follows From: Alasdair Young [EMAIL PROTECTED] Reply-To: Ant Users List user@ant.apache.org To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Wed, 03 Jan 2007 12:29:58 -0800 Fixed it. (I spent 2 hours on this, and just after I hit send, I realise

Re: Odd Behavior

2007-01-03 Thread Steve Loughran
Res Pons wrote: Thanks for your reply. I was using AnthillOS for a while but I gave up in frustration. It's a kiddy tool for starters but very easy to use, however, the developers of it were so agonizingly slow to implement features, I gave up. Now I'm reading on CruiseControl. I read a

Re: Odd Behavior

2007-01-03 Thread Res Pons
Subject: Re: Odd Behavior Date: Wed, 03 Jan 2007 13:41:47 + Res Pons wrote: Thanks for your reply. I was using AnthillOS for a while but I gave up in frustration. It's a kiddy tool for starters but very easy to use, however, the developers of it were so agonizingly slow to implement features, I

Re: Odd Behavior

2007-01-03 Thread Alasdair Young
I'm currently attempting to set up cruise control just now and I agree with the high maintainance aspect. My plan once I am finished is to publish some step-by-step instrctions on getting subversion, CC, ant and junit all working nicely together under FC6. I have an issue right now where, if I

Re: Odd Behavior

2007-01-03 Thread Alasdair Young
Fixed it. (I spent 2 hours on this, and just after I hit send, I realise that there was one more place to check :) cruise control has a cruisecontrol/lib directory with ant.jar in it. You need to ensure that ant.jar, ant-junit.jar and junit.jar are all the right versions and are all present in

Re: Odd Behavior

2006-12-31 Thread Steve Loughran
Res Pons wrote: I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob starts. I see gnu's being invoked by the cronjob and sun jdk when I login and my .bash_profile is sourced.

Re: Odd Behavior

2006-12-28 Thread Res Pons
around to see if I can fix it. Original Message Follows From: Martin Gainty [EMAIL PROTECTED] Reply-To: Martin Gainty [EMAIL PROTECTED] To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Wed, 27 Dec 2006 20:21:35 -0500 Appears that there are different javac compilers

Re: Odd Behavior

2006-12-28 Thread Alexey N. Solofnenko
I concur. I had to run my .profile script manually, because it did not seem to run for cron jobs. - Alexey. Res Pons wrote: I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob

Re: Odd Behavior

2006-12-28 Thread Martin Gainty
: [EMAIL PROTECTED] Sent: Thursday, December 28, 2006 4:26 PM Subject: Re: Odd Behavior I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob starts. I see gnu's being invoked

Re: Odd Behavior

2006-12-28 Thread Res Pons
@ant.apache.org CC: [EMAIL PROTECTED] Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 13:26:15 -0800 I think I emailed Scott prematurely yesterday and it appears that both of you may be right. I'm seeing a different java compiler kicking in at night when the cronjob starts. I see gnu's being invoked

Re: Odd Behavior

2006-12-28 Thread Scot P. Floess
Yes, when cron jobs are kicked off, it does not mean the same thing as logging in - i.e. the cron job is executing directly without the benefit of running ~/.bashrc (or whatever your default shell is). This is very similar to init scripts when a *nix box boots - same issue. When I saw your

Re: Odd Behavior

2006-12-28 Thread Alexey N. Solofnenko
user@ant.apache.org Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 13:32:04 -0800 I concur. I had to run my .profile script manually, because it did not seem to run for cron jobs. - Alexey. Res Pons wrote: I think I emailed Scott prematurely yesterday and it appears that both of you may

Re: Odd Behavior

2006-12-28 Thread Res Pons
Thanks for the explanation and helping me out :) Original Message Follows From: Scot P. Floess [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 16:50:30 -0500 Yes, when cron jobs are kicked off, it does

Re: Odd Behavior

2006-12-28 Thread Res Pons
Thank you, I will add it too. Original Message Follows From: Alexey N. Solofnenko [EMAIL PROTECTED] Reply-To: Ant Users List user@ant.apache.org To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Thu, 28 Dec 2006 13:50:32 -0800 Yes, a simple command in front . /home

Odd Behavior

2006-12-27 Thread Res Pons
I'm hoping someone could help me with my ant compile process. I have set up the build process and automation on a linux centOS box. When I cd into the build subfolder and manually run $ ant clean build Everything's ok. But when the cronjob kicks in and tries to compile, I get tons of

Re: Odd Behavior

2006-12-27 Thread Scot P. Floess
I bet its using the wrong JDK (as in the gcc version)... When you are running ant in the working example, which java is it using? Res Pons wrote: I'm hoping someone could help me with my ant compile process. I have set up the build process and automation on a linux centOS box. When I cd

Re: Odd Behavior

2006-12-27 Thread Scot P. Floess
As in on the command line: which java :) Scot P. Floess wrote: I bet its using the wrong JDK (as in the gcc version)... When you are running ant in the working example, which java is it using? Res Pons wrote: I'm hoping someone could help me with my ant compile process. I have set up the

Re: Odd Behavior

2006-12-27 Thread Res Pons
Original Message Follows From: Scot P. Floess [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Ant Users List user@ant.apache.org Subject: Re: Odd Behavior Date: Wed, 27 Dec 2006 15:58:46 -0500 As in on the command line: which java :) Scot P. Floess wrote: I bet its using the wrong JDK

Re: Odd Behavior

2006-12-27 Thread Martin Gainty
pas le destinataire de ce document, nous vous signalons qu'il est strictement interdit de le diffuser, de le distribuer ou de le reproduire. - Original Message - From: Res Pons [EMAIL PROTECTED] To: user@ant.apache.org Sent: Wednesday, December 27, 2006 3:44 PM Subject: Odd Behavior