You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2016/03/03 21:30:47 UTC

svn commit: r1733518 - /maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml

Author: krosenvold
Date: Thu Mar  3 20:30:47 2016
New Revision: 1733518

URL: http://svn.apache.org/viewvc?rev=1733518&view=rev
Log:
Changed directory permissions to something that will allow archiver to actually write files

The problem was that the testcase enforces a default file mode of 0555, which means that basically the plexus
archiver is not capable of writing files into the directory, since the permisssions prohibit this.

It may be possible to make the archiver apply permissions /after/ creating the files within,
but this is currently not implemented.

Modified:
    maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml

Modified: maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml?rev=1733518&r1=1733517&r2=1733518&view=diff
==============================================================================
--- maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml (original)
+++ maven/plugins/trunk/maven-assembly-plugin/src/it/projects/dependency-sets/depSet-unpacked-rdonly/child2/src/assemble/bin.xml Thu Mar  3 20:30:47 2016
@@ -34,7 +34,7 @@ under the License.
       <unpack>true</unpack>
       <outputDirectory>/${artifact.artifactId}</outputDirectory>
       <fileMode>0444</fileMode>
-      <directoryMode>0555</directoryMode>
+      <directoryMode>0755</directoryMode>
     </dependencySet>
   </dependencySets>
 </assembly>