I'd like to use the maven scm plugin to export my code from CVS with an anonymous user. I'm not using the CVS client for ease of use reasons (download mvn and eclipse, and you're good to go to join my project, on any platform).
However, I can't seem to get the mvn scm plugin to checkout code with anonymous pserver access. It complains that CVS requires a password. Am I missing something? this is the command I'm executing:
mvn scm:export
-DconnectionUrl=scm:cvs:pserver:anonymous@speedforge.cvs.sourceforge.net:/cvsroot/speedforge:speedforge
-DexportDirectory=export
-DscmVersion=v004
-DscmVersionType=tag
(You can run that directly, it's an open source project on source forge)
I'm getting the following error from the scm plugin:
org.netbeans.lib.cvsclient.connection.AuthenticationException: Wrong Password.
I'm using mvn 2.2.1 on a mac:
mvn -version
Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200)
Java version: 1.6.0_26
Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
Default locale: en_US, platform encoding: MacRoman
OS name: "mac os x" version: "10.7.2" arch: "x86_64" Family: "mac"
Although the mvn scm documentation seems to mention anonymous cvs access, it doesn't really come with examples on how to do just that: http://maven.apache.org/scm/cvs.html
Can anybody help me getting anonymous pserver access working with the mvn scm plugin?
Thanks!