Re: *****spam***** Adding files to CVS with Ant

2006-02-07 Thread Giovanni Mesturini
I found the problem. The problem is that I was attemping to upload a file in a tagged branch, checked out like a readonly release. My fault, I'm sorry. If you checkout a readonly release from CVS you must have an alternative branch to commit in. Now I have succesfully solved this problem, but othe

Re: *****spam***** Adding files to CVS with Ant

2006-02-07 Thread Geoffrey Mitchell
I had problems with this too. I think what is happening is that it is trying to add your files in a directory called cvs-local/test-module, which doesn't exist in cvs, so it is failing, which is good, because this isn't what you want anyway. If you were going to do this from the command line,

Re: Adding files to CVS with Ant

2006-02-07 Thread Andrew Goktepe
Is the new file in a directory that is also new? The cvs add command is not recursive; you will need to add any new directories first. Try doing the add and commit of the same file manually on the command line and see if you get an error that way too. If so, then this is not a problem with Ant. -

Adding files to CVS with Ant

2006-02-07 Thread Giovanni Mesturini
Scenario: I have to add a file to CVS from client to server using an Ant script. This is my build.xml: ... ...

Re: cvs with ant

2005-01-04 Thread Nicolas OLLIVIER
It's OK, thanks - Original Message - From: "Ivan Ivanov" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Monday, January 03, 2005 6:47 PM Subject: Re: cvs with ant --- [EMAIL PROTECTED] wrote: > I believe the cvs login command accepts a passwor

Re: cvs with ant

2005-01-03 Thread Ivan Ivanov
--- [EMAIL PROTECTED] wrote: > I believe the cvs login command accepts a password > on the command line? Yes, cvs login when issued from command line does prompt for a password. > > I would also bet that eclipse works well with ant > "input" task. Well, I tried Ant task from Eclipse 3.0 a mo

Re: cvs with ant

2005-01-03 Thread galenboyerdev
[EMAIL PROTECTED] writes: > Nicolas OLLIVIER <[EMAIL PROTECTED]> writes: > > > Hi Galen, > > > > If I execute the cvs command under dos window, it's OK: > > "cvs -d :pserver:olliviern:[EMAIL PROTECTED]:/extra/cvs/RAPTOR > > login" > > (where passwd is replaced wit

Re: cvs with ant

2005-01-03 Thread galenboyerdev
ieve the cvs login command accepts a password on the command line? I would also bet that eclipse works well with ant "input" task. So, have your ant login target use the "input" to accept the password and then pass it as a parameter to cvs from ant. Of course, both are conjectures

RE: cvs with ant

2005-01-03 Thread Nicolas OLLIVIER
eption: CreateProcess: cvs -d:pserver:olliviern:[EMAIL PROTECTED]:/extra/cvs/RAPTOR login error=2 BUILD SUCCESSFUL Total time: 0 seconds >>>>>>>>>>>>>>>>>>>>>>>>>>> Still the same "Caught exception: CreateProcess&q

Re: cvs with ant

2005-01-03 Thread galenboyerdev
Nicolas OLLIVIER <[EMAIL PROTECTED]> writes: > Hi antoine, > > Starting the task cvs_test under eclipse 3.0.0 on windows XP (team plugin > installed) > > > command="login" > output="output.txt" > error="error.txt" > /> > > > I g

Re: cvs with ant

2005-01-03 Thread Nicolas OLLIVIER
yes - Original Message - From: "Antoine Levy-Lambert" <[EMAIL PROTECTED]> To: Sent: Monday, January 03, 2005 10:36 AM Subject: Re: cvs with ant Hello Nicholas, did you restart Eclipse after having changed your Path ? Cheers, Antoine > Hi antoine, > > S

Re: cvs with ant

2005-01-03 Thread Antoine Levy-Lambert
gt; (I got cvs help). > > Thanks for your help, > Nicolas > > > - Original Message ----- > From: "Antoine Levy-Lambert" <[EMAIL PROTECTED]> > To: "Ant Users List" > Sent: Sunday, January 02, 2005 7:38 PM > Subject: Re: cvs with ant &g

Re: cvs with ant

2005-01-03 Thread Nicolas OLLIVIER
- Original Message - From: "Antoine Levy-Lambert" <[EMAIL PROTECTED]> To: "Ant Users List" Sent: Sunday, January 02, 2005 7:38 PM Subject: Re: cvs with ant Hello Radha, the ant cvs task can be used to perform all cvs operations. The attribute command is used to say

Re: cvs with ant

2005-01-02 Thread Antoine Levy-Lambert
Hello Radha, the ant cvs task can be used to perform all cvs operations. The attribute command is used to say which operation you want to do. see http://ant.apache.org/manual/CoreTasks/cvs.html Cheers, Antoine Radha Sangal wrote: I know there is a cvs task in ant to checkout project. Is there any t

cvs with ant

2004-12-31 Thread Radha Sangal
I know there is a cvs task in ant to checkout project. Is there any task to update a cvs project? I mean to include checkout-update-checkin process all in one ? We have a big application which is not updated since long into cvs. To checkout that is taking very long. I m doing it presently with