You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Hung Huynh (JIRA)" <ji...@codehaus.org> on 2011/09/13 01:38:07 UTC

[jira] Commented: (MASSEMBLY-238) Assembly plugin removes file permissions

    [ https://jira.codehaus.org/browse/MASSEMBLY-238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=278590#comment-278590 ] 

Hung Huynh commented on MASSEMBLY-238:
--------------------------------------

I still see this problem with latest version 2.2.1. Building a .tar.gz package from existing files with execution permission and after I untar it, those permission are gone.


> Assembly plugin removes file permissions
> ----------------------------------------
>
>                 Key: MASSEMBLY-238
>                 URL: https://jira.codehaus.org/browse/MASSEMBLY-238
>             Project: Maven 2.x Assembly Plugin
>          Issue Type: Bug
>    Affects Versions: 2.2-beta-1
>            Reporter: Vincent Massol
>            Assignee: John Casey
>             Fix For: 2.2-beta-4
>
>
> I have some files with the execute permission set. When they are copied into a zip file by the assembly plugin their permissions are removed.
> This forces me to do something ugly (and not efficient) like this:
> {code}
>     <!-- Copy sh files so that we can set their permissions. This is required since the
>          Assembly plugin looses file permissions. -->
>     <dependencySet>
>       <!-- This shouldn't be required but there's a bug in version 2.2-beta-1 of the Assembly
>            plugin where the artifact name will be used instead of / if outputFileNameMapping is
>            not specified -->
>       <outputFileNameMapping></outputFileNameMapping>
>       <includes>
>         <include>com.xpn.xwiki.platform:xwiki-jetty-resources</include>
>       </includes>
>       <outputDirectory>/</outputDirectory>
>       <unpack>true</unpack>
>       <unpackOptions>
>         <includes>
>           <include>**/*.sh</include>
>         </includes>
>       </unpackOptions>
>       <fileMode>755</fileMode>
>     </dependencySet>
>     <!-- Copy all other files (excluding sh files). See above for details. -->
>     <dependencySet>
>       <!-- This shouldn't be required but there's a bug in version 2.2-beta-1 of the Assembly
>            plugin where the artifact name will be used instead of / if outputFileNameMapping is
>            not specified -->
>       <outputFileNameMapping></outputFileNameMapping>
>       <includes>
>         <include>com.xpn.xwiki.platform:xwiki-jetty-resources</include>
>       </includes>
>       <outputDirectory>/</outputDirectory>
>       <unpack>true</unpack>
>       <unpackOptions>
>         <excludes>
>           <exclude>**/*.sh</exclude>
>         </excludes>
>       </unpackOptions>
>     </dependencySet>
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira