Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
1.0-beta-3
-
None
Description
In static method getSettings() of CvsUtil class (org.apache.maven.scm.provider.cvslib.util), we try to get the cvs-settings.xml property file from ${user.dir}/.scm/
------------------------------------
File scmUserDir = new File( System.getProperty( "user.dir" ), ".scm" );
File settingsFile = new File( scmUserDir, "cvs-settings.xml" );
------------------------------------
The SCM documentation (http://maven.apache.org/scm/cvs.html) say this file should be in ${user.home}/.scm/ and not
/.scm/.
This should be easy to correct.
Thibaut