You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by "Stevenson, Chris" <Ch...@DrKW.com> on 2004/11/04 17:47:27 UTC

scm:checkout-project can't get to work

Hello all,
 
I'm having problems with the scm:checkout-project goal talking to cvs. The
steps I have taken are:
 
- I have ant, maven, wincvs in my path 
- I have ANT_HOME set
- I have MAVEN_HOME set
- I can login to cvs (in the same directory) and download the files manually
at command prompt.
- I don't have any maven.scm* properties defined in any properties file
- In the POM I have my connection defined as 
     <repository>
 
<connection>scm:cvs:pserver:username@cvs.gb.somserver.com:/opt/CVS/Master:Pa
rentDirectory/LowerDirectory/ProjectDirectory</connection>
     <url>http://cvs.gb.somserver.com/cvsweb/cvsweb.cgi/</url>
    </repository>
- Without fail I always get this error:
 
scm:checkout-project:
scm:cvs-checkout-project:
    [echo] Checking out ParentDirectory/LowerDirectory/ProjectDirectory;
from CVSROOT: :pserver:username@cvs.gb.somserver.com:/opt/CVS/Master
    [delete] Deleting directory
C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
ectory
    [mkdir] Created dir:
C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
ectory
    [cvs] Using cvs passfile: o:\.cvspass
    [cvs] cvs checkout: in directory
ParentDirectory/LowerDirectory/ProjectDirectory:
    [cvs] cvs checkout: cannot open CVS/Entries for reading: No such file or
directory
    [cvs] cvs [checkout aborted]: cannot write <CVS/Template file>: No such
file or directory
 
BUILD FAILED
 
There is no .cvspass file on my o drive but even if I put one there I still
get this problem.
 
If anyone can help you may save my sanity....
 
Thanks,
 
Chris
 
 
 
 
 
 
 
 
 


--------------------------------------------------------------------------------
The information contained herein is confidential and is intended solely for the
addressee. Access by any other party is unauthorised without the express 
written permission of the sender. If you are not the intended recipient, please 
contact the sender either via the company switchboard on +44 (0)20 7623 8000, or
via e-mail return. If you have received this e-mail in error or wish to read our
e-mail disclaimer statement and monitoring policy, please refer to 
http://www.drkw.com/disc/email/ or contact the sender. 3166
--------------------------------------------------------------------------------


Re: scm:checkout-project can't get to work

Posted by erdem kilic <er...@gmail.com>.
Hi,
firstly you have to create a cvs user file to maven in your server.
You can use like this goal to make it. Change this goal with your
configs then run it.

<goal name="cvspass">
<cvspass cvsroot=":pserver:userid@cvs_server:repository_dir"
password="user_passwd" />
</goal>





On Thu, 4 Nov 2004 16:47:27 -0000, Stevenson, Chris
<ch...@drkw.com> wrote:
> Hello all,
> 
> I'm having problems with the scm:checkout-project goal talking to cvs. The
> steps I have taken are:
> 
> - I have ant, maven, wincvs in my path
> - I have ANT_HOME set
> - I have MAVEN_HOME set
> - I can login to cvs (in the same directory) and download the files manually
> at command prompt.
> - I don't have any maven.scm* properties defined in any properties file
> - In the POM I have my connection defined as
>     <repository>
> 
> <connection>scm:cvs:pserver:username@cvs.gb.somserver.com:/opt/CVS/Master:Pa
> rentDirectory/LowerDirectory/ProjectDirectory</connection>
>     <url>http://cvs.gb.somserver.com/cvsweb/cvsweb.cgi/</url>
>    </repository>
> - Without fail I always get this error:
> 
> scm:checkout-project:
> scm:cvs-checkout-project:
>    [echo] Checking out ParentDirectory/LowerDirectory/ProjectDirectory;
> from CVSROOT: :pserver:username@cvs.gb.somserver.com:/opt/CVS/Master
>    [delete] Deleting directory
> C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
> ectory
>    [mkdir] Created dir:
> C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
> ectory
>    [cvs] Using cvs passfile: o:\.cvspass
>    [cvs] cvs checkout: in directory
> ParentDirectory/LowerDirectory/ProjectDirectory:
>    [cvs] cvs checkout: cannot open CVS/Entries for reading: No such file or
> directory
>    [cvs] cvs [checkout aborted]: cannot write <CVS/Template file>: No such
> file or directory
> 
> BUILD FAILED
> 
> There is no .cvspass file on my o drive but even if I put one there I still
> get this problem.
> 
> If anyone can help you may save my sanity....
> 
> Thanks,
> 
> Chris
> 
> --------------------------------------------------------------------------------
> The information contained herein is confidential and is intended solely for the
> addressee. Access by any other party is unauthorised without the express
> written permission of the sender. If you are not the intended recipient, please
> contact the sender either via the company switchboard on +44 (0)20 7623 8000, or
> via e-mail return. If you have received this e-mail in error or wish to read our
> e-mail disclaimer statement and monitoring policy, please refer to
> http://www.drkw.com/disc/email/ or contact the sender. 3166
> --------------------------------------------------------------------------------
> 
>

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


Re: scm:checkout-project can't get to work

Posted by Brett Porter <br...@gmail.com>.
looks like you do not have permission to create a file where you are
attempting to check out to. Does a normal cvs checkout command work in
that place?


On Thu, 4 Nov 2004 16:47:27 -0000, Stevenson, Chris
<ch...@drkw.com> wrote:
> Hello all,
> 
> I'm having problems with the scm:checkout-project goal talking to cvs. The
> steps I have taken are:
> 
> - I have ant, maven, wincvs in my path
> - I have ANT_HOME set
> - I have MAVEN_HOME set
> - I can login to cvs (in the same directory) and download the files manually
> at command prompt.
> - I don't have any maven.scm* properties defined in any properties file
> - In the POM I have my connection defined as
>      <repository>
> 
> <connection>scm:cvs:pserver:username@cvs.gb.somserver.com:/opt/CVS/Master:Pa
> rentDirectory/LowerDirectory/ProjectDirectory</connection>
>      <url>http://cvs.gb.somserver.com/cvsweb/cvsweb.cgi/</url>
>     </repository>
> - Without fail I always get this error:
> 
> scm:checkout-project:
> scm:cvs-checkout-project:
>     [echo] Checking out ParentDirectory/LowerDirectory/ProjectDirectory;
> from CVSROOT: :pserver:username@cvs.gb.somserver.com:/opt/CVS/Master
>     [delete] Deleting directory
> C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
> ectory
>     [mkdir] Created dir:
> C:\WorkSpace\Temp\target\checkouts\ParentDirectory\LowerDirectory\ProjectDir
> ectory
>     [cvs] Using cvs passfile: o:\.cvspass
>     [cvs] cvs checkout: in directory
> ParentDirectory/LowerDirectory/ProjectDirectory:
>     [cvs] cvs checkout: cannot open CVS/Entries for reading: No such file or
> directory
>     [cvs] cvs [checkout aborted]: cannot write <CVS/Template file>: No such
> file or directory
> 
> BUILD FAILED
> 
> There is no .cvspass file on my o drive but even if I put one there I still
> get this problem.
> 
> If anyone can help you may save my sanity....
> 
> Thanks,
> 
> Chris
> 
> --------------------------------------------------------------------------------
> The information contained herein is confidential and is intended solely for the
> addressee. Access by any other party is unauthorised without the express
> written permission of the sender. If you are not the intended recipient, please
> contact the sender either via the company switchboard on +44 (0)20 7623 8000, or
> via e-mail return. If you have received this e-mail in error or wish to read our
> e-mail disclaimer statement and monitoring policy, please refer to
> http://www.drkw.com/disc/email/ or contact the sender. 3166
> --------------------------------------------------------------------------------
> 
>

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