You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Trustin Lee (JIRA)" <ji...@codehaus.org> on 2006/01/14 03:01:01 UTC

[jira] Created: (MNG-1966) directoryPermissions is not repected when I deploy a POM

directoryPermissions is not repected when I deploy a POM
--------------------------------------------------------

         Key: MNG-1966
         URL: http://jira.codehaus.org/browse/MNG-1966
     Project: Maven 2
        Type: Bug

  Components: Artifacts and Repositories  
    Versions: 2.0.1    
 Environment: Debian Linux unstable, Sun JDK 1.5.0_06
    Reporter: Trustin Lee


It seems like 'directoryPermissions' doesn't work at all though 'filePermissions' do.  I tried both scp and scpexe.  Nothing worked.  I also changed my umask to 002, but it didn't help at all.

If you have committership in the Apache Directory Project (Brett? :), then you can try it by yourself:

--------
svn co https://svn.apache.org/repos/asf/directory/trunks/ directory
cd directory
mvn --non-recursive deploy
--------

This is my ~/.m2/settings.xml

--------
<?xml version="1.0" encoding="UTF-8"?>
<settings>
  <servers>
    <server>
      <id>apache.snapshots</id>
      <username>trustin</username>
      <privateKey>/home/trustin/.ssh/id_rsa</privateKey>
      <directoryPermissions>0775</directoryPermissions>
      <filePermissions>0664</filePermissions>
    </server>
  </servers>
</settings>
--------

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1990) directoryPermissions is not repected when I deploy a POM

Posted by "Brett Porter (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1990?page=all ]

Brett Porter updated MNG-1990:
------------------------------

      Assign To: Brett Porter
    Fix Version: 2.0.3

> directoryPermissions is not repected when I deploy a POM
> --------------------------------------------------------
>
>          Key: MNG-1990
>          URL: http://jira.codehaus.org/browse/MNG-1990
>      Project: Maven 2
>         Type: Bug

>  Environment: Debian Linux unstable, Sun JDK 1.5.0_06
>     Reporter: Trustin Lee
>     Assignee: Brett Porter
>      Fix For: 2.0.3

>
>
> It seems like 'directoryPermissions' doesn't work at all though 'filePermissions' do.  I tried both scp and scpexe.  Nothing worked.  I also changed my umask to 002, but it didn't help at all.
> If you have committership in the Apache Directory Project (Brett? :), then you can try it by yourself:
> --------
> svn co https://svn.apache.org/repos/asf/directory/trunks/ directory
> cd directory
> mvn --non-recursive deploy
> --------
> This is my ~/.m2/settings.xml
> --------
> <?xml version="1.0" encoding="UTF-8"?>
> <settings>
>   <servers>
>     <server>
>       <id>apache.snapshots</id>
>       <username>trustin</username>
>       <privateKey>/home/trustin/.ssh/id_rsa</privateKey>
>       <directoryPermissions>0775</directoryPermissions>
>       <filePermissions>0664</filePermissions>
>     </server>
>   </servers>
> </settings>
> --------

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Updated: (MNG-1990) directoryPermissions is not repected when I deploy a POM

Posted by "John Casey (JIRA)" <ji...@codehaus.org>.
     [ http://jira.codehaus.org/browse/MNG-1990?page=all ]

John Casey updated MNG-1990:
----------------------------

    Fix Version:     (was: 2.0.3)
                 2.0.4

> directoryPermissions is not repected when I deploy a POM
> --------------------------------------------------------
>
>          Key: MNG-1990
>          URL: http://jira.codehaus.org/browse/MNG-1990
>      Project: Maven 2
>         Type: Bug

>  Environment: Debian Linux unstable, Sun JDK 1.5.0_06
>     Reporter: Trustin Lee
>     Assignee: Brett Porter
>      Fix For: 2.0.4

>
>
> It seems like 'directoryPermissions' doesn't work at all though 'filePermissions' do.  I tried both scp and scpexe.  Nothing worked.  I also changed my umask to 002, but it didn't help at all.
> If you have committership in the Apache Directory Project (Brett? :), then you can try it by yourself:
> --------
> svn co https://svn.apache.org/repos/asf/directory/trunks/ directory
> cd directory
> mvn --non-recursive deploy
> --------
> This is my ~/.m2/settings.xml
> --------
> <?xml version="1.0" encoding="UTF-8"?>
> <settings>
>   <servers>
>     <server>
>       <id>apache.snapshots</id>
>       <username>trustin</username>
>       <privateKey>/home/trustin/.ssh/id_rsa</privateKey>
>       <directoryPermissions>0775</directoryPermissions>
>       <filePermissions>0664</filePermissions>
>     </server>
>   </servers>
> </settings>
> --------

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1966) directoryPermissions is not repected when I deploy a POM

Posted by "Christian Gruber (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1966?page=comments#action_56172 ] 

Christian Gruber commented on MNG-1966:
---------------------------------------

On a related note, the same permissions tags do not seem to apply to the <repository> tag.  Such would be ideal for use in the pom.xml <distributionManagement> section.  


> directoryPermissions is not repected when I deploy a POM
> --------------------------------------------------------
>
>          Key: MNG-1966
>          URL: http://jira.codehaus.org/browse/MNG-1966
>      Project: Maven 2
>         Type: Bug

>   Components: Artifacts and Repositories
>     Versions: 2.0.1
>  Environment: Debian Linux unstable, Sun JDK 1.5.0_06
>     Reporter: Trustin Lee

>
>
> It seems like 'directoryPermissions' doesn't work at all though 'filePermissions' do.  I tried both scp and scpexe.  Nothing worked.  I also changed my umask to 002, but it didn't help at all.
> If you have committership in the Apache Directory Project (Brett? :), then you can try it by yourself:
> --------
> svn co https://svn.apache.org/repos/asf/directory/trunks/ directory
> cd directory
> mvn --non-recursive deploy
> --------
> This is my ~/.m2/settings.xml
> --------
> <?xml version="1.0" encoding="UTF-8"?>
> <settings>
>   <servers>
>     <server>
>       <id>apache.snapshots</id>
>       <username>trustin</username>
>       <privateKey>/home/trustin/.ssh/id_rsa</privateKey>
>       <directoryPermissions>0775</directoryPermissions>
>       <filePermissions>0664</filePermissions>
>     </server>
>   </servers>
> </settings>
> --------

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


[jira] Commented: (MNG-1990) directoryPermissions is not repected when I deploy a POM

Posted by "Erik van Zijst (JIRA)" <ji...@codehaus.org>.
    [ http://jira.codehaus.org/browse/MNG-1990?page=comments#action_58078 ] 

Erik van Zijst commented on MNG-1990:
-------------------------------------

I'm having the same problem and I'm afraid it's making it difficult cooperate on projects.


> directoryPermissions is not repected when I deploy a POM
> --------------------------------------------------------
>
>          Key: MNG-1990
>          URL: http://jira.codehaus.org/browse/MNG-1990
>      Project: Maven 2
>         Type: Bug

>  Environment: Debian Linux unstable, Sun JDK 1.5.0_06
>     Reporter: Trustin Lee
>     Assignee: Brett Porter
>      Fix For: 2.0.3

>
>
> It seems like 'directoryPermissions' doesn't work at all though 'filePermissions' do.  I tried both scp and scpexe.  Nothing worked.  I also changed my umask to 002, but it didn't help at all.
> If you have committership in the Apache Directory Project (Brett? :), then you can try it by yourself:
> --------
> svn co https://svn.apache.org/repos/asf/directory/trunks/ directory
> cd directory
> mvn --non-recursive deploy
> --------
> This is my ~/.m2/settings.xml
> --------
> <?xml version="1.0" encoding="UTF-8"?>
> <settings>
>   <servers>
>     <server>
>       <id>apache.snapshots</id>
>       <username>trustin</username>
>       <privateKey>/home/trustin/.ssh/id_rsa</privateKey>
>       <directoryPermissions>0775</directoryPermissions>
>       <filePermissions>0664</filePermissions>
>     </server>
>   </servers>
> </settings>
> --------

-- 
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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org