You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Thibaut CAZENAVE (JIRA)" <ji...@codehaus.org> on 2006/04/28 13:47:19 UTC

[jira] Created: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Location of cvs-settings.xml should be in user.home and not in user.dir
-----------------------------------------------------------------------

         Key: SCM-190
         URL: http://jira.codehaus.org/browse/SCM-190
     Project: Maven SCM
        Type: Bug

  Components: maven-scm-provider-cvs  
    Versions: 1.0-beta-3    
    Reporter: Thibaut CAZENAVE
    Priority: Trivial


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 {user.dir}/.scm/.

This should be easy to correct.

Thibaut


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79567 ] 
            
Emmanuel Venisse commented on SCM-190:
--------------------------------------

it is used by maven2, maven1 continuum, so we can't use .m2 directory

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79561 ] 
            
Emmanuel Venisse commented on SCM-190:
--------------------------------------

I hope to release it for the end of the year.
I don't want to store it in .m2/scm because maven-scm is independant of maven

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Joerg Schaible (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79565 ] 
            
Joerg Schaible commented on SCM-190:
------------------------------------

You realize, that this sounds slightly strange for a component using a "maven-" prefix in its name? ;-)
Personally I'd rather decrease the amount of directories and files cluttering my home directory. Even if maven-scm is independent of Maven 95% of the users are not aware of this and will search for those settings in .m2 ...

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SCM-190?page=all ]

Emmanuel Venisse updated SCM-190:
---------------------------------

      Assign To: Emmanuel Venisse
    Fix Version: 1.0

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>          Key: SCM-190
>          URL: http://jira.codehaus.org/browse/SCM-190
>      Project: Maven SCM
>         Type: Bug

>   Components: maven-scm-provider-cvs
>     Versions: 1.0-beta-3
>     Reporter: Thibaut CAZENAVE
>     Assignee: Emmanuel Venisse
>     Priority: Trivial
>      Fix For: 1.0

>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Eric Bernstein (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79189 ] 
            
Eric Bernstein commented on SCM-190:
------------------------------------

Any chance of 1.0 being released soon?  I'd love to see this fix out in a release, and there hasn't been an scm release in a very long time.  

Just a thought though - would it not be better if cvs-settings.xml was in ${user.home}/.m2/scm/ so all the maven config files were grouped together?

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Eric Bernstein (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79582 ] 
            
Eric Bernstein commented on SCM-190:
------------------------------------

The .scm directory doesn't seem all that bad - esp given that it's shared across projects.  

Is there anything that needs to be done to expedite the scm release?  My company's cvs will actually hang when using compression - which is another issue entirely, but having a good way to configure that would be incredibly useful.  If there are tasks that need to be done before scm can be released I'm sure I can find some cycles to help out.  Let me know if there's anything I can do to get this out sooner.  Thanks.

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/SCM-190?page=comments#action_79583 ] 
            
Emmanuel Venisse commented on SCM-190:
--------------------------------------

It's my latest message there because it's better to discuss on mailing list ;) but the roadmap is there : http://jira.codehaus.org/browse/SCM?report=com.atlassian.jira.plugin.system.project:roadmap-panel

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>                 Key: SCM-190
>                 URL: http://jira.codehaus.org/browse/SCM-190
>             Project: Maven SCM
>          Issue Type: Bug
>          Components: maven-scm-provider-cvs
>    Affects Versions: 1.0-beta-3
>            Reporter: Thibaut CAZENAVE
>         Assigned To: Emmanuel Venisse
>            Priority: Trivial
>             Fix For: 1.0
>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (SCM-190) Location of cvs-settings.xml should be in user.home and not in user.dir

Posted by "Emmanuel Venisse (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/SCM-190?page=all ]
     
Emmanuel Venisse closed SCM-190:
--------------------------------

    Resolution: Fixed

Fixed

> Location of cvs-settings.xml should be in user.home and not in user.dir
> -----------------------------------------------------------------------
>
>          Key: SCM-190
>          URL: http://jira.codehaus.org/browse/SCM-190
>      Project: Maven SCM
>         Type: Bug

>   Components: maven-scm-provider-cvs
>     Versions: 1.0-beta-3
>     Reporter: Thibaut CAZENAVE
>     Assignee: Emmanuel Venisse
>     Priority: Trivial
>      Fix For: 1.0

>
>
> 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 {user.dir}/.scm/.
> This should be easy to correct.
> Thibaut

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira