Author: veithen
Date: Mon Mar 14 21:30:34 2011
New Revision: 1081570

URL: http://svn.apache.org/viewvc?rev=1081570&view=rev
Log:
Applied a workaround for MASSEMBLY-422 / MASSEMBLY-449. This should fix the 
broken file and directory permissions in the distribution ZIP files.

Modified:
    axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
    axis/axis2/java/sandesha/trunk/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml?rev=1081570&r1=1081569&r2=1081570&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Mon Mar 14 
21:30:34 2011
@@ -140,7 +140,6 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.2-beta-5</version>
                 <executions>
                     <execution>
                         <id>distribution-package</id>

Modified: axis/axis2/java/sandesha/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/pom.xml?rev=1081570&r1=1081569&r2=1081570&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/pom.xml Mon Mar 14 21:30:34 2011
@@ -189,6 +189,18 @@
                         <preparationGoals>clean install</preparationGoals>
                     </configuration>
                 </plugin>
+                <plugin>
+                    <artifactId>maven-assembly-plugin</artifactId>
+                    <version>2.2-beta-5</version>
+                    <configuration>
+                        <!-- Workaround for MASSEMBLY-422 / MASSEMBLY-449 -->
+                        <archiverConfig>
+                            <fileMode>420</fileMode> <!-- 420(dec) = 644(oct) 
-->
+                            <directoryMode>493</directoryMode> <!-- 493(dec) = 
755(oct) -->
+                            <defaultDirectoryMode>493</defaultDirectoryMode>
+                        </archiverConfig>
+                    </configuration>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>


Reply via email to