Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
script that sets up the path. I'm sure a few google searches > can help. > > -- Larry > > > -Original Message- > > From: blackwater dev [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 07, 2005 7:09 AM > > To: Ant Users List > > Subject: Re

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
ke > I said. So you will have to set the PATH variable in your script that calls > the ant script. If you don't have a shell script that calls your ant script, > create one for the purpose of building up the environment you need. > > -- Larry > > > -----Original Mess

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
> -Original Message----- > > From: blackwater dev [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 07, 2005 5:48 AM > > To: Ant Users List > > Subject: cvs task failing from cron > > > > > > I have a cvs task that uses ssh authentication to checkout: >

cvs task failing from cron

2005-07-07 Thread blackwater dev
I have a cvs task that uses ssh authentication to checkout: After asking a question yesterday about storing my ssh password, I set up an ssh key and now when I ssh into the box, I can run the build script and everything runs fine and it doesn't ask for my password. The problem is, I need to run

Re: cvs command

2005-07-06 Thread blackwater dev
- > > From: Shatzer, Larry [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, July 06, 2005 11:50 AM > > To: 'Ant Users List' > > Subject: RE: cvs command > > > > > > You need to use a ssh agent. > > http://www.cse.wustl.edu/~mdeters/how-to/ssh/ &

cvs command

2005-07-06 Thread blackwater dev
Hello, I have this cvs command: Which works fine but I have to type in my password each time. We don't have pserver set up so I can't use that. How can I set this up so it won't ask me for my password so I can run it from a cron job? Thanks! --

Re: problems with cvs task

2005-06-27 Thread blackwater dev
On 6/27/05, blackwater dev <[EMAIL PROTECTED]> wrote: > Hello all, > > I am trying to check out files using the cvs task but am still having > problems. When I ssh in, I am able to simply go to my directory and > do a cvs update to get all the latest files. In my build f

problems with cvs task

2005-06-27 Thread blackwater dev
Hello all, I am trying to check out files using the cvs task but am still having problems. When I ssh in, I am able to simply go to my directory and do a cvs update to get all the latest files. In my build file, I am using the task below. I took the cvsRoot from the root file I found in my cvs

Re: cvs update command

2005-06-24 Thread blackwater dev
Any more ideas on this? Thanks! On 6/23/05, blackwater dev <[EMAIL PROTECTED]> wrote: > Yes, the ant script and the cvs repository are on the same server. > > I looked in root and saw the details where: > :extssh:[EMAIL PROTECTED]:/usr/local/cvs > > I then took this and

Re: cvs update command

2005-06-23 Thread blackwater dev
password then errored also with: [cvs] cvs update: cannot open CVS/Entries for reading: No such file or directory [cvs] cvs [update aborted]: no repository Thanks! On 6/23/05, Ben Stringer <[EMAIL PROTECTED]> wrote: > On Thu, 2005-06-23 at 10:22 -0400, blackwater dev wrote: >

cvs update command

2005-06-23 Thread blackwater dev
In order to update my code from cvs, I typically cd into my directory /httpd/mystuff/ then just do "cvs update". I am trying to put this into a cvs task but keep getting errors. Error: [cvs] ..: unknown host [cvs] ..: unknown host [cvs] ..: Unknown host [cvs] cvs [update ab

exec task failing

2005-06-22 Thread blackwater dev
I have this build file: And it fails with this error: checkout: BUILD FAILED file:/httpd/tcci/dev2/build.xml:5: Execute failed: java.io.IOException: No such file or directory I installed j2dsk1.4.2_08 yesterday and just did which java and it is looking for the java here: /usr/bin

Re: cvs checkout

2005-02-21 Thread blackwater dev
t the top level pollywog directory, just want all if it's contents checked out to htdocs. Thanks! On Mon, 21 Feb 2005 13:08:28 +0100, Yves Martin <[EMAIL PROTECTED]> wrote: > blackwater dev <[EMAIL PROTECTED]> writes: > > > I am using the cvs task: > > > > &g

cvs checkout

2005-02-18 Thread blackwater dev
I am using the cvs task: The problem is, when I check it out..I get web/package/pollywog...etc but I want to grab all of the files under pollywog but not the actual root folder of pollywog...can I specify this in the task? Thanks! ---

can't use tstamp

2005-02-17 Thread blackwater dev
Was the tstamp task added recently? I am using an older version of cvs and get an error of: Unexpected element "tstamp" Thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs task emailing on merge

2005-02-17 Thread blackwater dev
How can I have the cvs task email me about merges and not try to do them? Thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

extssh cvs connect

2005-02-15 Thread blackwater dev
Hello, I am trying to connect to cvs via ant and am using this line in the cvs task: cvsRoot=":extssh:[EMAIL PROTECTED]:/usr/local" But I get the error: [cvs] cvs checkout: Unknown method (`extssh') in CVSROOT. and then bad cvsRoot. I am running ant 1.5.2.23. Can I not use extssh? Thank

junit task halts

2004-12-06 Thread blackwater dev
Hello all, I have this build file: When I run it the output is: Buildfile: build.xml test: And that is where it just stops...I can type stuff after test: but it doesn't do anything...I then have to close the termina

Re: AW: newbie-running junit task from jar file

2004-12-01 Thread blackwater dev
html#TestingTasks > [2] http://ant.apache.org/manual/OptionalTasks/junit.html > [3] http://ant.apache.org/manual/OptionalTasks/junitreport.html > > > -Ursprüngliche Nachricht- > > Von: blackwater dev [mailto:[EMAIL PROTECTED] > > Gesendet am: Mittwoch, 1. De

newbie-running junit task from jar file

2004-12-01 Thread blackwater dev
Hello, I took my junit classes and created a jar file which I want to run from ant. How do I use the junit task and specify where the jar file lives and to kick off with the AllTests class? I also need to use the html reporting also. Most of the samples I see simply call the basic class. Thank