AW: Need help on ant cvs task

2009-06-29 Thread Jan.Materne
9 22:13 >An: user-h...@ant.apache.org; user@ant.apache.org >Betreff: Need help on ant cvs task > >Hai, > > Currently I am trying to checkout the CVS repository from ant task in >SOLARIS. > I got this exception [cvs] Caught exception: cvs: not found.Is it >required cvs client

Need help on ant cvs task

2009-06-29 Thread Ananthan Shanmugam
Hai, Currently I am trying to checkout the CVS repository from ant task in SOLARIS. I got this exception [cvs] Caught exception: cvs: not found.Is it required cvs client setup in solaris? or any additional setup is required to execute cvs ant task from SOLARIS? Please help on this issue.

Calling ANT (CVS Task) from Java Missing Path

2008-06-20 Thread Raymond Berg (ALLETE)
Greetings, As part of a larger project I'm trying to invoke ANT from a Java class using a variation of "Runtime.getRuntime.exec('ant')". However, the java environment I'm calling from (Oracle Application Server) is not providing many environmental variables to the

RE: CVS task failure: cannot rename

2008-01-02 Thread Judy Anderson
ick Genter [mailto:[EMAIL PROTECTED] Sent: Sunday, December 30, 2007 3:09 PM To: Ant Users List Subject: RE: CVS task failure: cannot rename > From: Judy Anderson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 25, 2007 1:51 PM > To: Ant Users List > Subject: RE: CVS task failure: cannot

RE: CVS task failure: cannot rename

2007-12-30 Thread Rick Genter
> From: Judy Anderson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 25, 2007 1:51 PM > To: Ant Users List > Subject: RE: CVS task failure: cannot rename > > I have done some more experimentation with my problem. It > only happens on binary files (flag "-kb"

Re: Question to cvs task

2007-12-28 Thread David Weintraub
Are you on Windows? On cvsnt, the password is stored inside the Registry. The cvs task can't get to it. I've put the password into the CVSROOT. Since we don't check anything back into CVS from Ant, it's really just a read-only CVSROOT. Take a look at the task in the Ant ma

Re: Question to cvs task

2007-12-28 Thread Michał Letyński
Thanks for your advice. I wrote separate task which extend AbstractCvsTask. I got one more question about cvs. One thing which is magic for me is how cvs connect to cvs server. Im making only diff but i dont put a server host, login and pass. I assume that this cvs is taking login and server fro

Re: Question to cvs task

2007-12-27 Thread David Weintraub
As you're finding out, that's the way "cvs" outputs that command, and all the CVS ant task does is do a system call to the "cvs" executable. Whatever CVS outputs, Ant does too. There maybe a way of filtering the output of one task with the input of another. I think there is something about resourc

RE: CVS task failure: cannot rename

2007-12-27 Thread Chuck Holzwarth
D] Sent: Monday, December 24, 2007 3:53 PM To: user@ant.apache.org Subject: CVS task failure: cannot rename I am a new user of ANT, and the first problem I've been unable to solve on my own is a CVS problem. (I didn't construct the build.xml file myself;

Question to cvs task

2007-12-27 Thread Michał Letyński
I want to diif two branches. Im using this command: command="diff --brief -r rel-1-patches -r rel-2-patches" And my output looks like this: RCS file: /usr/local/cvs/webproject/src/doc/taglibs/file.xml,v retrieving revision 1.2 retrieving revision 1.2.4.1 diff --brief -r1.2 -r1.2.4.1 Files /tmp/cv

RE: CVS task failure: cannot rename

2007-12-25 Thread Judy Anderson
.) I'm really mystified. I wish that I had the Windows error code that led the task to decide it could not delete the file. -Original Message- From: Judy Anderson [mailto:[EMAIL PROTECTED] Sent: Monday, December 24, 2007 3:53 PM To: user@ant.apache.org Subject: CVS task failure: ca

Re: CVS task failure: cannot rename

2007-12-24 Thread David Weintraub
just showed me "[cvs] cvs checkout: Updating" lines for each prior directory, > as one would expect. > > Searching for similar error messages found me other people who had cannot > renames with Permission Denied, but that's not my problem. One person with > CVS pro

CVS task failure: cannot rename

2007-12-24 Thread Judy Anderson
rson with CVS problems recommended using an EXEC task instead, which I'm considering, but wanted to see if there was any suggestion to how to debug this using the CVS task. Extremely strangely, .java files got updated when I ran it on a different package. Now, unfortunately, I can'

ANT - CVS task to add a new file to CVS repository?

2007-08-20 Thread Bhanu Pabreja
Hi Guys, I am trying to add a new file to CVS project EmesApplication. It is a zip file named emesArchinve_1.zip? I try to checkout first and then do an add thru cvs ant task but get error each time I try to do it. >> Error is :cvs [add aborted]: there is no version here; do 'cvs checkout' fir

Re: CVS Task

2005-12-05 Thread Antoine Levy-Lambert
Hello Guruprasad, your XML looks strange. . what does this 3D all over the place mean ? > Uhhm, 3D is the hexa for the equal sign. Anyway, I think that the problem is that cvs.exe is not in your path. I am not sure which versions of cvs.exe are OK for the Ant tasks, but I have had good experie

Re: CVS Task

2005-12-05 Thread Mark Eramo
12/05/2005 07:33 AM Please respond to "Ant Users List" To user@ant.apache.org cc Subject CVS Task Hi all, I have written a build file that does a checkout from the CVS. But, when i invoke ant command for the written build file, i get an error message as *[cvs] Using cvs passfi

CVS Task

2005-12-05 Thread Guruprasad R
Hi all, I have written a build file that does a checkout from the CVS. But, when i invoke ant command for the written build file, i get an error message as *[cvs] Using cvs passfile: C:\Documents and Settings\admin\.cvspass* [cvs] Caught exception: CreateProcess: cvs -d:pserver:[EMAIL PROTECTED]:

AW: CVS Task

2005-12-05 Thread Jan.Materne
cvs.exe must be on your PATH Can you execute cvs -version from the same command line as "ant" ? Jan >-Ursprüngliche Nachricht- >Von: Guruprasad R [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 5. Dezember 2005 13:29 >An: Ant Users List >Betreff: CVS Task >

Re: CVS Task

2005-12-05 Thread James Abley
Is cvs on your PATH? On Mon, 2005-12-05 at 12:29, Guruprasad R wrote: > Hi all, > > I have written a build file that does a checkout from the CVS. But, when i > invoke ant command for the written build file, i get an error message as > > *[cvs] Using cvs passfile: C:\Documents and Settings\admi

CVS Task

2005-12-05 Thread Guruprasad R
Hi all, I have written a build file that does a checkout from the CVS. But, when i invoke ant command for the written build file, i get an error message as *[cvs] Using cvs passfile: C:\Documents and Settings\admin\.cvspass* * [cvs] Caught exception: CreateProcess: cvs -d:pserver:[EMAIL PROTECTE

Wrong revision checkout with in cvs task

2005-09-02 Thread Leon Pu
Hi all, I used following build script to checkout a jar with appointed tag from my cvs repository, but it retrieved the newest revision jar to me. After I changed the build script to following new one, I get the correct file with the tag from cvs. Did anybody meet this situa

Re: CVS TASK - login

2005-08-27 Thread Andrew Goktepe
ug that is documented on the above page. You could also stick the password in the CVSROOT (: pserver:username:[EMAIL PROTECTED]:/path). -Andrew On 8/27/05, Minds Work <[EMAIL PROTECTED]> wrote: > > Hi > Is there a way to login in a CVS repository with the CVS task passing &

CVS TASK - login

2005-08-27 Thread Minds Work
Hi Is there a way to login in a CVS repository with the CVS task passing the password as a String instead of passing it in a file (the .cvspass)? []s fred - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: CVS Task

2005-08-26 Thread Dominique Devienne
sume with the -d option in the checkout command) so that in eclipse I > have > > c:/workspaces/project1 > c:/workspaces/project2 > > When I try to use the following ant cvs task to do an update, it errors > out saying there isn't a source directory. > >

CVS Task

2005-08-26 Thread Joe Rice
/project1 c:/workspaces/project2 When I try to use the following ant cvs task to do an update, it errors out saying there isn't a source directory. Is there a flag to make ant realize that the source directory has been removed and to just do the update on workspaces/project1 and works

Re: cvs task with cvs log command

2005-08-05 Thread Steve Loughran
for security reasons) -q log -d "2005-08-01<2005-08-03" C:/wsad/workspace/deployment_utilities > c:\\new_test.log Have anyone an idea ? How can i pass the " to the CVS command ? Any workaround for me ? yes, look at the output attribute of the cvs task - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

cvs task with cvs log command

2005-08-05 Thread KrustyDerClown
Hello, i have a problem with the task in ANT. Here my cvs target: command="log -d "2005-08-01<2005-08-03" C:/wsad/workspace/deployment_utilities > c:\\new_test.log" failonerror="yes" > But i get this error: [cvs] cvs log: cannot open CVS/Entries for reading: No such file or directory [c

help with cvs task

2005-07-25 Thread Robert Upshall
This is probably more of a cvs question than an ant one but maybe somebody here can help. I have 2 cvs modules, server and client. The build.xml in question resides in the server project/module. As part of the build it creates a distribution file named client-api.jar file that contains EJB

RE: cvs task failing from cron

2005-07-08 Thread S I
t; <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: "Ant Users List" Subject: RE: cvs task failing from cron Date: Fri, 8 Jul 2005 13:57:58 -0500 MIME-Version: 1.0 X-Originating-IP: [205.143.75.32] Received: from mail.apache.org ([209.237.227.199]) by mc9-f2.hotmail.com

RE: cvs task failing from cron

2005-07-08 Thread George Dibi
All, After a build I send an email notification for PASS/FAIL. The problem is that sometimes I get this IO error. Have anyone ran to this problem before? I am using ant version 161 and 162. In either cases I am getting the same error. I would appreciate any help. hmpsuccess: [mail] Sending

RE: cvs task failing from cron

2005-07-07 Thread Anderson, Rob (Global Trade)
[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 7:45 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > Thanks Larry...I'll give it a go. > > Thanks again! > > On 7/7/05, Shatzer, Larry <[EMAIL PROTECTED]> wrote: > > The script t

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 Shatzer, Larry
- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 7:09 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > Sorry Larry to be so dense but I am a linux newbie. > > So in the cron it needs to set the PATH variable as it is

Re: cvs task failing from cron

2005-07-07 Thread blackwater dev
age- > > From: blackwater dev [mailto:[EMAIL PROTECTED] > > Sent: Thursday, July 07, 2005 6:34 AM > > To: Ant Users List > > Subject: Re: cvs task failing from cron > > > > > > So cvs should be in my path env variable? How do I check that? > > > >

RE: cvs task failing from cron

2005-07-07 Thread Shatzer, Larry
onment you need. -- Larry > -Original Message- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 6:34 AM > To: Ant Users List > Subject: Re: cvs task failing from cron > > > So cvs should be in my path env variable? How do I chec

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: >

RE: cvs task failing from cron

2005-07-07 Thread Shatzer, Larry
Make sure your script for cron sets up your path so cvs is in your path. Cronjobs run in a minimal environment. -- Larry > -Original Message- > From: blackwater dev [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 07, 2005 5:48 AM > To: Ant Users List > Subject: cvs ta

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 ne

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

Error trying to use cvs task to access CVS repository via extssh

2005-04-01 Thread kola.oyedeji
Hi First of all I apologise if this is slightly off topic as it may well not be ant which is the cause of the problem. I have an ANT script which I am running from within Eclipse which exports the specified tag/branch from a CVS repository to the webroot. It works with an old pserver repository

CVS task freezes during checkout

2005-03-08 Thread DataCom - Diego
Hi all, I am trying to use Ant 1.6.2 together with Cvsnt 2.0.58d in a station running Windows XP and accessing a cvs Linux Server (probably not Cvsnt). The protocol I am using is extssh. The problem is that the cvs task is frequently freezing during checkout. It simply stops processing with

Re: cvs task emailing on merge

2005-02-22 Thread Yves Martin
Yves Martin <[EMAIL PROTECTED]> writes: > blackwater dev <[EMAIL PROTECTED]> writes: > >> How can I have the cvs task email me about merges and not try to do them? > > You should use: > > > And then parse "file.txt" to look for merge or c

Re: cvs task emailing on merge

2005-02-22 Thread Yves Martin
blackwater dev <[EMAIL PROTECTED]> writes: > How can I have the cvs task email me about merges and not try to do them? You should use: And then parse "file.txt" to look for merge or conflict operations. If yes, send a mail, if no repeat the command with '-n'

Re: RE: Escape " in ANT script and Use CVS task

2005-02-19 Thread hrd
Thank you for your interest in BitWise, we have received your email and will process it shortly. We will get in touch with you as needed. *** This is auto responder, please do not reply to this message. *** - To unsubscribe, e-m

RE: Escape " in ANT script and Use CVS task

2005-02-19 Thread Vadim Kazakov
Try " -Original Message- From: Michael Wang (IT) [mailto:[EMAIL PROTECTED] Sent: February 18, 2005 1:12 PM To: Ant Users List Subject: Escape " in ANT script and Use CVS task Hi, I wanna use task to add and commit some files. What's the correct format to do it? So

Re: Escape " in ANT script and Use CVS task

2005-02-18 Thread David A. Bartmess
Oops, you're right... was reverting to my Perl scripting days... THanks for the correction! On Friday 18 February 2005 03:34 pm, Dominique Devienne wrote: > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On > > Behalf > > > The "command" attribute is a text str

RE: Escape " in ANT script and Use CVS task

2005-02-18 Thread Dominique Devienne
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf > > The "command" attribute is a text string passed directly to cvs, so use > whatever command you normally would use. And for the comment, you can use > any variable set prior to the call. For example, to a

Re: Escape " in ANT script and Use CVS task

2005-02-18 Thread David A Bartmess
The "command" attribute is a text string passed directly to cvs, so use whatever command you normally would use. And for the comment, you can use any variable set prior to the call. For example, to add a file with a given comment (either in a build.properties, a prior target, or the command line),

Escape " in ANT script and Use CVS task

2005-02-18 Thread Michael Wang \(IT\)
Hi, I wanna use task to add and commit some files. What's the correct format to do it? So far, for commit, here is a sample ant is there a way to put message or lable there when commit? I still don't figure out how to add a new file

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]

Re: How to use cvs task with extssh

2005-01-21 Thread Julius Davies
Hi, DIEGO, Try connecting to your CVS server directly over ssh (port 22), using PuTTY. The same error message will show up, but this time you'll get to interact with it. You should only need to do this once to eliminate the error you are seeing. yours, Julius On Fri, 2005-21-01 at 15:49 -020

How to use cvs task with extssh

2005-01-21 Thread DataCom - Diego
Hi all, I am using Ant 1.6.2/Java 1.4.2_05/WinXP/cvsnt and trying to access a remote Linux CVS repository. The supported protocol is extssh, but the checkout is not working. It seems to require some user interaction and I simply do not know what to do. This is the output that is printed and the

Re: cvs task behind a firewall

2004-12-21 Thread Peter Reilly
cvsgrab already has an ant task bundled with it: http://cvsgrab.sourceforge.net/ant-usage.html Peter Brian Kuhn wrote: I'm pretty sure you cannot get the cvs command line to use a proxy. I'm sure the Ant cvs task could be reworked to use CvsGrab too though. I'll have to look into

Re: cvs task behind a firewall

2004-12-20 Thread Brian Kuhn
I'm pretty sure you cannot get the cvs command line to use a proxy. I'm sure the Ant cvs task could be reworked to use CvsGrab too though. I'll have to look into that... On Tue, 21 Dec 2004 10:49:48 +1100, Conor MacNeill <[EMAIL PROTECTED]> wrote: > > Brian Kuhn wro

Re: cvs task behind a firewall

2004-12-20 Thread Conor MacNeill
Brian Kuhn wrote: Does anyone know if it's possible to get Ant's cvs task to use a proxy? I'm behind a corporate firewall. I've gotten Maven to use my proxy to download dependencies, but for some reason it doesn't pass the proxy configuration on to Ant's cvs task.

cvs task behind a firewall

2004-12-20 Thread Brian Kuhn
Does anyone know if it's possible to get Ant's cvs task to use a proxy? I'm behind a corporate firewall. I've gotten Maven to use my proxy to download dependencies, but for some reason it doesn't pass the proxy configuration on to Ant's cvs task. I assume this is b

CVS task - cvsRsh set to "ssh" - How to skip "ssh_askpass" call?

2004-10-04 Thread ACario
Ants, I have an ANT CVS task with cvsRsh attribute set to "ssh". When running the task, I get this message: ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory Permission denied, please try again. I have then installed openssh ssh-askpass, and now I get a

AW: CVS task

2003-11-12 Thread Antoine Lévy-Lambert
or there is no path /daten/cvs/rep/[directory pointed to by file ${ws.dir}/CVS/Repository] Antoine -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 12. November 2003 08:38 An: [EMAIL PROTECTED] Betreff: CVS task Hi, I have some problems whi

CVS task

2003-11-12 Thread Juraj . Lenharcik
Hi, I have some problems while executing the CVS-task. If I run the build from Excelipse everything works fine. While execution from the command line I get the following exception. It seems that ANT cannot find the CVS path??? Has someone an idea, why? Thanks, Juraj $ ant -verbose Apache Ant

Re: ANT's CVS Task

2003-06-20 Thread Antoine Levy-Lambert
This means that cvs.exe is not in your path; Cheers Antoine > > init: > [cvs] Caught exception: CreateProcess: cvs - > d:pserver:[EMAIL PROTECTED]:/home/cvspublic checkout ant error=2 > - To unsubscribe, e-mail: [EMAIL

ANT's CVS Task

2003-06-20 Thread andreiv3103
Hello I'm new to ANT and I am trying to use the ANT's CVS task to retrieve some sources from a CVS server. I wrote a simple build.xml file but after running it I get the folowing message: D:\ANT_TESTS>ant Buildfile: build.xml init: [cvs] Caught exception: CreateProcess: cv

CVS Task and SystemPath

2003-05-29 Thread Stefan Weise
Hi, is there a possibility to get the CVS task running without having CVS.exe in the system (enviroment) path? Thanks Stefan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

How do I interpret 'Important: This task needs "cvs" on the path.' when using cvs task?

2003-05-28 Thread Odéus
Hi, the manual for the CVS task on http://ant.apache.org/manual/ says that: "Important: This task needs "cvs" on the path. If it isn't, you will get an error (such as error 2 on windows)." I do get this error 2, but I don´t know how to interpret the recommendation. An