I am trying to use maven scm plugin to checkout some files from CVS but I always get a "Wrong Password" exception. Here is what I am tying:

           <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-scm-plugin</artifactId>
               <version>1.0</version>
               <executions>
                   <execution>
                       <id>checkout</id>
                       <phase>package</phase>
                       <goals>
                           <goal>checkout</goal>
                       </goals>
                       <configuration>
<connectionUrl>scm:cvs:pserver:[EMAIL PROTECTED]:/home/cvs/idev:module</connectionUrl>
                           <password>abc123</password>
                       </configuration>
                   </execution>
               </executions>
           </plugin>

I am sure that password is correct but what can be wrong then?

Regards,
Usman

Reply via email to