You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ev...@apache.org on 2005/12/09 10:26:25 UTC

svn commit: r355427 - /maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml

Author: evenisse
Date: Fri Dec  9 01:26:20 2005
New Revision: 355427

URL: http://svn.apache.org/viewcvs?rev=355427&view=rev
Log:
Submitted by: Alex Mayorgaadame

Add faq for cvs anonymous access

Modified:
    maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml

Modified: maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml
URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml?rev=355427&r1=355426&r2=355427&view=diff
==============================================================================
--- maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml (original)
+++ maven/continuum/trunk/continuum-site/src/site/fml/faqs.fml Fri Dec  9 01:26:20 2005
@@ -93,5 +93,38 @@
         </p>
       </answer>
     </faq>
+    <faq id="builds-keep-failing-because-continuum-cant-checkout-sources">
+      <question>Why Continuum builds keep failing with password is required even if I'm using anonymous or no password in CVS?</question>
+      <answer>
+        <p>
+          If you keep getting this build error on your projects:
+        </p>
+        <source>
+Exception:
+Cannot checkout sources.
+Exception while executing SCM command.
+password is required
+        </source>
+        <p>
+        Modify the SCM URL of your Continuum Project from something like this:
+        </p>
+        <source>
+scm:cvs:pserver:username@servername:path_to_repository:module_name
+        </source>
+        <p>
+        to something like this:
+        </p>
+        <source>
+scm:cvs:pserver:username:@servername:path_to_repository:module_name
+        </source>
+        <p>
+        Please note the : before @servername. Save changes and try to build again, this time checkout should succeed.
+        </p>
+        <p>
+          <b>You can learn more about SCM URLs <a href="http://maven.apache.org/scm/scm-url-format.html">here</a></b>.
+        </p>
+      </answer>
+    </faq>
+
   </part>
 </faqs>