You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by Maciej Mastalarczuk <mm...@hotmail.com> on 2006/04/28 07:54:08 UTC

Maven2 and CVS

Hi,

Did anybody have any luck in trying to release something to CVS with Maven2? 
I had no problems doing this with subversion, but CVS plugins appear to be 
somewhat broken.

No matter what I do I get the following message:

(...)
[INFO] Verifying there are no local modifications ...
Provider message:
The cvs command failed.
Command output:
cvs update: Empty password used - try 'cvs login' with a real password

cvs [update aborted]: authorization failed: server localhost rejected access 
to /CVSRepo for user someuser
(...)

I tried to specify the password in the URL and in .cvspass file (which is 
automatically created after specifying it in the url) and always get this 
message. Why is it ingoring the password??

Here is my test URL: I can't see anything wrong with it:

scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject

When I use say Eclipse's plugin to get to CVS everything works fine (the 
repository, username and password are OK).

Thanks in advance. Any help would be appreciated.

Maciej

_________________________________________________________________
realestate.com.au: the biggest address in property   
http://ninemsn.realestate.com.au


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by dan tran <da...@gmail.com>.
I am not a CVS novice here but

I think you need to do a cvs login first. then your scmurl is like this

scm:cvs:pserver:someuser:@localhost:/CVSRepo:TestProject

note: not password in url, and there is a ":"next to @

-D


On 4/27/06, Maciej Mastalarczuk <mm...@hotmail.com> wrote:
>
> Hi,
>
> Did anybody have any luck in trying to release something to CVS with
> Maven2?
> I had no problems doing this with subversion, but CVS plugins appear to be
> somewhat broken.
>
> No matter what I do I get the following message:
>
> (...)
> [INFO] Verifying there are no local modifications ...
> Provider message:
> The cvs command failed.
> Command output:
> cvs update: Empty password used - try 'cvs login' with a real password
>
> cvs [update aborted]: authorization failed: server localhost rejected
> access
> to /CVSRepo for user someuser
> (...)
>
> I tried to specify the password in the URL and in .cvspass file (which is
> automatically created after specifying it in the url) and always get this
> message. Why is it ingoring the password??
>
> Here is my test URL: I can't see anything wrong with it:
>
> scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>
> When I use say Eclipse's plugin to get to CVS everything works fine (the
> repository, username and password are OK).
>
> Thanks in advance. Any help would be appreciated.
>
> Maciej
>
> _________________________________________________________________
> realestate.com.au: the biggest address in property
> http://ninemsn.realestate.com.au
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

Re: Maven2 and CVS

Posted by Maciej Mastalarczuk <mm...@hotmail.com>.
I fully agree mate, but I live in so-called "corporate envirnment", which 
means in order to install an SVN Linux box I have to fight an army of orks, 
goblins, sysadmins and other sinister creatures in order to get anything 
like this done. By the time the fight is finished you've forgotten what you 
were fighting for.

So the pain of having CVSNT with all its quirks is so far tolerable :-)

Regards

Maciej

>From: "Alexandre Poitras" <al...@gmail.com>
>Reply-To: "Maven Users List" <us...@maven.apache.org>
>To: "Maven Users List" <us...@maven.apache.org>
>Subject: Re: Maven2 and CVS
>Date: Sun, 30 Apr 2006 23:33:22 -0400
>
>Had the same problem and didn't find any way other then login in
>first. Oh yeah I found another one : install a Linux box (without
>ressorting to our "Linux yurk!!" server team ... ), install SVN on it
>and say farewell to CVSNT. Seriously, using CVSNT is asking for
>troubles. It will harm you more than it can help!
>
>On 4/30/06, Maciej Mastalarczuk <mm...@hotmail.com> wrote:
>>OK, it is sorted out now, indeed doing the trick with making CVS store the
>>password in the registry
>>worked. Good stuff!
>>
>>I assume on Linux the .cvspass would do the trick, but on Windows we need 
>>to
>>perfom manual login at least once. It seems to be all happy thereafter.
>>
>>Thanks a lot for your help.
>>
>>Maciej
>>
>> >From: Emmanuel Venisse <em...@venisse.net>
>> >Reply-To: "Maven Users List" <us...@maven.apache.org>
>> >To: Maven Users List <us...@maven.apache.org>
>> >Subject: Re: Maven2 and CVS
>> >Date: Fri, 28 Apr 2006 09:59:36 +0200
>> >
>> >ok, it's what I thought :-)
>> >
>> >cvsnt doesn't use .cvspass file. With cvsnt, you need to run manually 
>>'cvs
>> >login' command and it will store password in windows registry.
>> >
>> >Maven-SCM use .cvspass like standard cvs and it can't use the windows
>> >registry.
>> >
>> >Emmanuel
>> >
>> >Maciej Mastalarczuk a écrit :
>> >>Thanks for reply
>> >>
>> >>The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the
>> >>colon with nothing after it and it didn't make any difference.
>> >>
>> >>I am however almost sure the culprit is maven-release-plugin 
>>(2.0-beta-3),
>> >>which depends on broken scm plugins.  I tried to check out the trunk 
>>and
>> >>build it as the dependencies appear to be fixed there but it fails unit
>> >>tests :-(
>> >>
>> >>Is there a downloadable version of maven-release-plugin that works with
>> >>CVS? The plugin documentation website says there should be version
>> >>2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.
>> >>
>> >>Regards
>> >>
>> >>Maciej
>> >>
>> >>>From: Emmanuel Venisse <em...@venisse.net>
>> >>>Reply-To: "Maven Users List" <us...@maven.apache.org>
>> >>>To: Maven Users List <us...@maven.apache.org>
>> >>>Subject: Re: Maven2 and CVS
>> >>>Date: Fri, 28 Apr 2006 09:01:07 +0200
>> >>>
>> >>>what is your OS?
>> >>>What is your cvs version?
>> >>>
>> >>>Emmanuel
>> >>>
>> >>>Maciej Mastalarczuk a écrit :
>> >>>
>> >>>>Hi,
>> >>>>
>> >>>>Did anybody have any luck in trying to release something to CVS with
>> >>>>Maven2? I had no problems doing this with subversion, but CVS plugins
>> >>>>appear to be somewhat broken.
>> >>>>
>> >>>>No matter what I do I get the following message:
>> >>>>
>> >>>>(...)
>> >>>>[INFO] Verifying there are no local modifications ...
>> >>>>Provider message:
>> >>>>The cvs command failed.
>> >>>>Command output:
>> >>>>cvs update: Empty password used - try 'cvs login' with a real 
>>password
>> >>>>
>> >>>>cvs [update aborted]: authorization failed: server localhost rejected
>> >>>>access to /CVSRepo for user someuser
>> >>>>(...)
>> >>>>
>> >>>>I tried to specify the password in the URL and in .cvspass file 
>>(which
>> >>>>is automatically created after specifying it in the url) and always 
>>get
>> >>>>this message. Why is it ingoring the password??
>> >>>>
>> >>>>Here is my test URL: I can't see anything wrong with it:
>> >>>>
>> >>>>scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>> >>>>
>> >>>>When I use say Eclipse's plugin to get to CVS everything works fine 
>>(the
>> >>>>repository, username and password are OK).
>> >>>>
>> >>>>Thanks in advance. Any help would be appreciated.
>> >>>>
>> >>>>Maciej
>> >>>>
>> >>>>_________________________________________________________________
>> >>>>realestate.com.au: the biggest address in property
>> >>>>http://ninemsn.realestate.com.au
>> >>>>
>> >>>>
>> >>>>---------------------------------------------------------------------
>> >>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>>>For additional commands, e-mail: users-help@maven.apache.org
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>> >>>
>> >>>
>> >>>---------------------------------------------------------------------
>> >>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>>For additional commands, e-mail: users-help@maven.apache.org
>> >>>
>> >>
>> >>_________________________________________________________________
>> >>1000s of Sexy Singles online now at Lavalife - Click here
>> >>http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
>> >>
>> >>
>> >>
>> >>---------------------------------------------------------------------
>> >>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >>For additional commands, e-mail: users-help@maven.apache.org
>> >>
>> >>
>> >>
>> >>
>> >
>> >
>> >---------------------------------------------------------------------
>> >To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> >For additional commands, e-mail: users-help@maven.apache.org
>> >
>>
>>_________________________________________________________________
>>1000s of Sexy Singles online now at Lavalife - Click here
>>http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>

_________________________________________________________________
New year, new job – there's more than 100,00 jobs at SEEK 
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fninemsn%2Eseek%2Ecom%2Eau&_t=752315885&_r=Jan05_tagline&_m=EXT


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Alexandre Poitras <al...@gmail.com>.
Had the same problem and didn't find any way other then login in
first. Oh yeah I found another one : install a Linux box (without
ressorting to our "Linux yurk!!" server team ... ), install SVN on it
and say farewell to CVSNT. Seriously, using CVSNT is asking for
troubles. It will harm you more than it can help!

On 4/30/06, Maciej Mastalarczuk <mm...@hotmail.com> wrote:
> OK, it is sorted out now, indeed doing the trick with making CVS store the
> password in the registry
> worked. Good stuff!
>
> I assume on Linux the .cvspass would do the trick, but on Windows we need to
> perfom manual login at least once. It seems to be all happy thereafter.
>
> Thanks a lot for your help.
>
> Maciej
>
> >From: Emmanuel Venisse <em...@venisse.net>
> >Reply-To: "Maven Users List" <us...@maven.apache.org>
> >To: Maven Users List <us...@maven.apache.org>
> >Subject: Re: Maven2 and CVS
> >Date: Fri, 28 Apr 2006 09:59:36 +0200
> >
> >ok, it's what I thought :-)
> >
> >cvsnt doesn't use .cvspass file. With cvsnt, you need to run manually 'cvs
> >login' command and it will store password in windows registry.
> >
> >Maven-SCM use .cvspass like standard cvs and it can't use the windows
> >registry.
> >
> >Emmanuel
> >
> >Maciej Mastalarczuk a écrit :
> >>Thanks for reply
> >>
> >>The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the
> >>colon with nothing after it and it didn't make any difference.
> >>
> >>I am however almost sure the culprit is maven-release-plugin (2.0-beta-3),
> >>which depends on broken scm plugins.  I tried to check out the trunk and
> >>build it as the dependencies appear to be fixed there but it fails unit
> >>tests :-(
> >>
> >>Is there a downloadable version of maven-release-plugin that works with
> >>CVS? The plugin documentation website says there should be version
> >>2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.
> >>
> >>Regards
> >>
> >>Maciej
> >>
> >>>From: Emmanuel Venisse <em...@venisse.net>
> >>>Reply-To: "Maven Users List" <us...@maven.apache.org>
> >>>To: Maven Users List <us...@maven.apache.org>
> >>>Subject: Re: Maven2 and CVS
> >>>Date: Fri, 28 Apr 2006 09:01:07 +0200
> >>>
> >>>what is your OS?
> >>>What is your cvs version?
> >>>
> >>>Emmanuel
> >>>
> >>>Maciej Mastalarczuk a écrit :
> >>>
> >>>>Hi,
> >>>>
> >>>>Did anybody have any luck in trying to release something to CVS with
> >>>>Maven2? I had no problems doing this with subversion, but CVS plugins
> >>>>appear to be somewhat broken.
> >>>>
> >>>>No matter what I do I get the following message:
> >>>>
> >>>>(...)
> >>>>[INFO] Verifying there are no local modifications ...
> >>>>Provider message:
> >>>>The cvs command failed.
> >>>>Command output:
> >>>>cvs update: Empty password used - try 'cvs login' with a real password
> >>>>
> >>>>cvs [update aborted]: authorization failed: server localhost rejected
> >>>>access to /CVSRepo for user someuser
> >>>>(...)
> >>>>
> >>>>I tried to specify the password in the URL and in .cvspass file (which
> >>>>is automatically created after specifying it in the url) and always get
> >>>>this message. Why is it ingoring the password??
> >>>>
> >>>>Here is my test URL: I can't see anything wrong with it:
> >>>>
> >>>>scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
> >>>>
> >>>>When I use say Eclipse's plugin to get to CVS everything works fine (the
> >>>>repository, username and password are OK).
> >>>>
> >>>>Thanks in advance. Any help would be appreciated.
> >>>>
> >>>>Maciej
> >>>>
> >>>>_________________________________________________________________
> >>>>realestate.com.au: the biggest address in property
> >>>>http://ninemsn.realestate.com.au
> >>>>
> >>>>
> >>>>---------------------------------------------------------------------
> >>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>>For additional commands, e-mail: users-help@maven.apache.org
> >>>>
> >>>>
> >>>>
> >>>>
> >>>
> >>>
> >>>---------------------------------------------------------------------
> >>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>>For additional commands, e-mail: users-help@maven.apache.org
> >>>
> >>
> >>_________________________________________________________________
> >>1000s of Sexy Singles online now at Lavalife - Click here
> >>http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
> >>
> >>
> >>
> >>---------------------------------------------------------------------
> >>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >>For additional commands, e-mail: users-help@maven.apache.org
> >>
> >>
> >>
> >>
> >
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> >For additional commands, e-mail: users-help@maven.apache.org
> >
>
> _________________________________________________________________
> 1000s of Sexy Singles online now at Lavalife - Click here
> http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Maciej Mastalarczuk <mm...@hotmail.com>.
Fair enough, but I tried to specify the password in the URL (ugly I know, 
but just for the test). I suspect that maven-release-plugin does not pass 
the password to cvs command.

BTW, I managed to build the 2.0-beta-4-SNAPSHOT; it was OutOfMemory error 
and I remedied it by inreasing the heap. But this is even worse. Same 
problem, but in addition it does not prompt me for a tag now. Never mind.

The new version however has outputted the cvs command and it turns out it 
does not have the password in it, even if I supply it on the URL.

I'll try the registry trick anyway

Thanks

Maciej


>From: Emmanuel Venisse <em...@venisse.net>
>Reply-To: "Maven Users List" <us...@maven.apache.org>
>To: Maven Users List <us...@maven.apache.org>
>Subject: Re: Maven2 and CVS
>Date: Fri, 28 Apr 2006 09:59:36 +0200
>
>ok, it's what I thought :-)
>
>cvsnt doesn't use .cvspass file. With cvsnt, you need to run manually 'cvs 
>login' command and it will store password in windows registry.
>
>Maven-SCM use .cvspass like standard cvs and it can't use the windows 
>registry.
>
>Emmanuel
>
>Maciej Mastalarczuk a écrit :
>>Thanks for reply
>>
>>The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the 
>>colon with nothing after it and it didn't make any difference.
>>
>>I am however almost sure the culprit is maven-release-plugin (2.0-beta-3), 
>>which depends on broken scm plugins.  I tried to check out the trunk and 
>>build it as the dependencies appear to be fixed there but it fails unit 
>>tests :-(
>>
>>Is there a downloadable version of maven-release-plugin that works with 
>>CVS? The plugin documentation website says there should be version 
>>2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.
>>
>>Regards
>>
>>Maciej
>>
>>>From: Emmanuel Venisse <em...@venisse.net>
>>>Reply-To: "Maven Users List" <us...@maven.apache.org>
>>>To: Maven Users List <us...@maven.apache.org>
>>>Subject: Re: Maven2 and CVS
>>>Date: Fri, 28 Apr 2006 09:01:07 +0200
>>>
>>>what is your OS?
>>>What is your cvs version?
>>>
>>>Emmanuel
>>>
>>>Maciej Mastalarczuk a écrit :
>>>
>>>>Hi,
>>>>
>>>>Did anybody have any luck in trying to release something to CVS with 
>>>>Maven2? I had no problems doing this with subversion, but CVS plugins 
>>>>appear to be somewhat broken.
>>>>
>>>>No matter what I do I get the following message:
>>>>
>>>>(...)
>>>>[INFO] Verifying there are no local modifications ...
>>>>Provider message:
>>>>The cvs command failed.
>>>>Command output:
>>>>cvs update: Empty password used - try 'cvs login' with a real password
>>>>
>>>>cvs [update aborted]: authorization failed: server localhost rejected 
>>>>access to /CVSRepo for user someuser
>>>>(...)
>>>>
>>>>I tried to specify the password in the URL and in .cvspass file (which 
>>>>is automatically created after specifying it in the url) and always get 
>>>>this message. Why is it ingoring the password??
>>>>
>>>>Here is my test URL: I can't see anything wrong with it:
>>>>
>>>>scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>>>>
>>>>When I use say Eclipse's plugin to get to CVS everything works fine (the 
>>>>repository, username and password are OK).
>>>>
>>>>Thanks in advance. Any help would be appreciated.
>>>>
>>>>Maciej
>>>>
>>>>_________________________________________________________________
>>>>realestate.com.au: the biggest address in property   
>>>>http://ninemsn.realestate.com.au
>>>>
>>>>
>>>>---------------------------------------------------------------------
>>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>---------------------------------------------------------------------
>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>For additional commands, e-mail: users-help@maven.apache.org
>>>
>>
>>_________________________________________________________________
>>1000s of Sexy Singles online now at Lavalife - Click here 
>>http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
>>
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>

_________________________________________________________________
Like your next flight on us? Velocity NAB Credit Card 
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Fadsfac%2Enet%2Flink%2Easp%3Fcc%3DNAT030%2E23080%2E0%26clk%3D1%26creativeID%3D34301&_t=754983092&_r=emailtagline&_m=EXT


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Maciej Mastalarczuk <mm...@hotmail.com>.
OK, it is sorted out now, indeed doing the trick with making CVS store the 
password in the registry
worked. Good stuff!

I assume on Linux the .cvspass would do the trick, but on Windows we need to 
perfom manual login at least once. It seems to be all happy thereafter.

Thanks a lot for your help.

Maciej

>From: Emmanuel Venisse <em...@venisse.net>
>Reply-To: "Maven Users List" <us...@maven.apache.org>
>To: Maven Users List <us...@maven.apache.org>
>Subject: Re: Maven2 and CVS
>Date: Fri, 28 Apr 2006 09:59:36 +0200
>
>ok, it's what I thought :-)
>
>cvsnt doesn't use .cvspass file. With cvsnt, you need to run manually 'cvs 
>login' command and it will store password in windows registry.
>
>Maven-SCM use .cvspass like standard cvs and it can't use the windows 
>registry.
>
>Emmanuel
>
>Maciej Mastalarczuk a écrit :
>>Thanks for reply
>>
>>The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the 
>>colon with nothing after it and it didn't make any difference.
>>
>>I am however almost sure the culprit is maven-release-plugin (2.0-beta-3), 
>>which depends on broken scm plugins.  I tried to check out the trunk and 
>>build it as the dependencies appear to be fixed there but it fails unit 
>>tests :-(
>>
>>Is there a downloadable version of maven-release-plugin that works with 
>>CVS? The plugin documentation website says there should be version 
>>2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.
>>
>>Regards
>>
>>Maciej
>>
>>>From: Emmanuel Venisse <em...@venisse.net>
>>>Reply-To: "Maven Users List" <us...@maven.apache.org>
>>>To: Maven Users List <us...@maven.apache.org>
>>>Subject: Re: Maven2 and CVS
>>>Date: Fri, 28 Apr 2006 09:01:07 +0200
>>>
>>>what is your OS?
>>>What is your cvs version?
>>>
>>>Emmanuel
>>>
>>>Maciej Mastalarczuk a écrit :
>>>
>>>>Hi,
>>>>
>>>>Did anybody have any luck in trying to release something to CVS with 
>>>>Maven2? I had no problems doing this with subversion, but CVS plugins 
>>>>appear to be somewhat broken.
>>>>
>>>>No matter what I do I get the following message:
>>>>
>>>>(...)
>>>>[INFO] Verifying there are no local modifications ...
>>>>Provider message:
>>>>The cvs command failed.
>>>>Command output:
>>>>cvs update: Empty password used - try 'cvs login' with a real password
>>>>
>>>>cvs [update aborted]: authorization failed: server localhost rejected 
>>>>access to /CVSRepo for user someuser
>>>>(...)
>>>>
>>>>I tried to specify the password in the URL and in .cvspass file (which 
>>>>is automatically created after specifying it in the url) and always get 
>>>>this message. Why is it ingoring the password??
>>>>
>>>>Here is my test URL: I can't see anything wrong with it:
>>>>
>>>>scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>>>>
>>>>When I use say Eclipse's plugin to get to CVS everything works fine (the 
>>>>repository, username and password are OK).
>>>>
>>>>Thanks in advance. Any help would be appreciated.
>>>>
>>>>Maciej
>>>>
>>>>_________________________________________________________________
>>>>realestate.com.au: the biggest address in property   
>>>>http://ninemsn.realestate.com.au
>>>>
>>>>
>>>>---------------------------------------------------------------------
>>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>>For additional commands, e-mail: users-help@maven.apache.org
>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>>---------------------------------------------------------------------
>>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>>For additional commands, e-mail: users-help@maven.apache.org
>>>
>>
>>_________________________________________________________________
>>1000s of Sexy Singles online now at Lavalife - Click here 
>>http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT
>>
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>

_________________________________________________________________
1000s of Sexy Singles online now at Lavalife - Click here 
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Emmanuel Venisse <em...@venisse.net>.
ok, it's what I thought :-)

cvsnt doesn't use .cvspass file. With cvsnt, you need to run manually 'cvs login' command and it 
will store password in windows registry.

Maven-SCM use .cvspass like standard cvs and it can't use the windows registry.

Emmanuel

Maciej Mastalarczuk a écrit :
> Thanks for reply
> 
> The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the 
> colon with nothing after it and it didn't make any difference.
> 
> I am however almost sure the culprit is maven-release-plugin 
> (2.0-beta-3), which depends on broken scm plugins.  I tried to check out 
> the trunk and build it as the dependencies appear to be fixed there but 
> it fails unit tests :-(
> 
> Is there a downloadable version of maven-release-plugin that works with 
> CVS? The plugin documentation website says there should be version 
> 2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.
> 
> Regards
> 
> Maciej
> 
>> From: Emmanuel Venisse <em...@venisse.net>
>> Reply-To: "Maven Users List" <us...@maven.apache.org>
>> To: Maven Users List <us...@maven.apache.org>
>> Subject: Re: Maven2 and CVS
>> Date: Fri, 28 Apr 2006 09:01:07 +0200
>>
>> what is your OS?
>> What is your cvs version?
>>
>> Emmanuel
>>
>> Maciej Mastalarczuk a écrit :
>>
>>> Hi,
>>>
>>> Did anybody have any luck in trying to release something to CVS with 
>>> Maven2? I had no problems doing this with subversion, but CVS plugins 
>>> appear to be somewhat broken.
>>>
>>> No matter what I do I get the following message:
>>>
>>> (...)
>>> [INFO] Verifying there are no local modifications ...
>>> Provider message:
>>> The cvs command failed.
>>> Command output:
>>> cvs update: Empty password used - try 'cvs login' with a real password
>>>
>>> cvs [update aborted]: authorization failed: server localhost rejected 
>>> access to /CVSRepo for user someuser
>>> (...)
>>>
>>> I tried to specify the password in the URL and in .cvspass file 
>>> (which is automatically created after specifying it in the url) and 
>>> always get this message. Why is it ingoring the password??
>>>
>>> Here is my test URL: I can't see anything wrong with it:
>>>
>>> scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>>>
>>> When I use say Eclipse's plugin to get to CVS everything works fine 
>>> (the repository, username and password are OK).
>>>
>>> Thanks in advance. Any help would be appreciated.
>>>
>>> Maciej
>>>
>>> _________________________________________________________________
>>> realestate.com.au: the biggest address in property   
>>> http://ninemsn.realestate.com.au
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>> For additional commands, e-mail: users-help@maven.apache.org
>>>
>>>
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>> For additional commands, e-mail: users-help@maven.apache.org
>>
> 
> _________________________________________________________________
> 1000s of Sexy Singles online now at Lavalife - Click here 
> http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Maciej Mastalarczuk <mm...@hotmail.com>.
Thanks for reply

The OS is XP professional and CVS is CVSNT 2.0.51.d and I did try the colon 
with nothing after it and it didn't make any difference.

I am however almost sure the culprit is maven-release-plugin (2.0-beta-3), 
which depends on broken scm plugins.  I tried to check out the trunk and 
build it as the dependencies appear to be fixed there but it fails unit 
tests :-(

Is there a downloadable version of maven-release-plugin that works with CVS? 
The plugin documentation website says there should be version 
2.0-beta-4-SNAPSHOT, but I cannot find such tag anywahere.

Regards

Maciej

>From: Emmanuel Venisse <em...@venisse.net>
>Reply-To: "Maven Users List" <us...@maven.apache.org>
>To: Maven Users List <us...@maven.apache.org>
>Subject: Re: Maven2 and CVS
>Date: Fri, 28 Apr 2006 09:01:07 +0200
>
>what is your OS?
>What is your cvs version?
>
>Emmanuel
>
>Maciej Mastalarczuk a écrit :
>>Hi,
>>
>>Did anybody have any luck in trying to release something to CVS with 
>>Maven2? I had no problems doing this with subversion, but CVS plugins 
>>appear to be somewhat broken.
>>
>>No matter what I do I get the following message:
>>
>>(...)
>>[INFO] Verifying there are no local modifications ...
>>Provider message:
>>The cvs command failed.
>>Command output:
>>cvs update: Empty password used - try 'cvs login' with a real password
>>
>>cvs [update aborted]: authorization failed: server localhost rejected 
>>access to /CVSRepo for user someuser
>>(...)
>>
>>I tried to specify the password in the URL and in .cvspass file (which is 
>>automatically created after specifying it in the url) and always get this 
>>message. Why is it ingoring the password??
>>
>>Here is my test URL: I can't see anything wrong with it:
>>
>>scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
>>
>>When I use say Eclipse's plugin to get to CVS everything works fine (the 
>>repository, username and password are OK).
>>
>>Thanks in advance. Any help would be appreciated.
>>
>>Maciej
>>
>>_________________________________________________________________
>>realestate.com.au: the biggest address in property   
>>http://ninemsn.realestate.com.au
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>>For additional commands, e-mail: users-help@maven.apache.org
>>
>>
>>
>>
>
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
>For additional commands, e-mail: users-help@maven.apache.org
>

_________________________________________________________________
1000s of Sexy Singles online now at Lavalife - Click here 
http://a.ninemsn.com.au/b.aspx?URL=http%3A%2F%2Flavalife9%2Eninemsn%2Ecom%2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26locale%3Den%5FAU%26a%3D22031&_t=751140432&_m=EXT


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Maven2 and CVS

Posted by Emmanuel Venisse <em...@venisse.net>.
what is your OS?
What is your cvs version?

Emmanuel

Maciej Mastalarczuk a écrit :
> Hi,
> 
> Did anybody have any luck in trying to release something to CVS with 
> Maven2? I had no problems doing this with subversion, but CVS plugins 
> appear to be somewhat broken.
> 
> No matter what I do I get the following message:
> 
> (...)
> [INFO] Verifying there are no local modifications ...
> Provider message:
> The cvs command failed.
> Command output:
> cvs update: Empty password used - try 'cvs login' with a real password
> 
> cvs [update aborted]: authorization failed: server localhost rejected 
> access to /CVSRepo for user someuser
> (...)
> 
> I tried to specify the password in the URL and in .cvspass file (which 
> is automatically created after specifying it in the url) and always get 
> this message. Why is it ingoring the password??
> 
> Here is my test URL: I can't see anything wrong with it:
> 
> scm:cvs:pserver:someuser:blahblah@localhost:/CVSRepo:TestProject
> 
> When I use say Eclipse's plugin to get to CVS everything works fine (the 
> repository, username and password are OK).
> 
> Thanks in advance. Any help would be appreciated.
> 
> Maciej
> 
> _________________________________________________________________
> realestate.com.au: the biggest address in property   
> http://ninemsn.realestate.com.au
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org
> 
> 
> 
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org