aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Hartmann <hartmann.eric@gmail.com>2014-12-15 18:41:58 +0100
committerEric Hartmann <hartmann.eric@gmail.com>2014-12-15 18:41:58 +0100
commit628f851869b99d557b29d74d8ce9fead1ec76cfe (patch)
tree5be790c154fb42b79db028de43d312710b2d0315
parentab5c30df28565d53e45b46c19f293541f423c52b (diff)
downloadsonarqube-628f851869b99d557b29d74d8ce9fead1ec76cfe.tar.gz
sonarqube-628f851869b99d557b29d74d8ce9fead1ec76cfe.zip
Readd the assembly configuration since zip file has incorrect mode
-rw-r--r--pom.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index bf3193160e1..b58e235dda4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -136,6 +136,16 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
+ <configuration>
+ <archiverConfig>
+ <!-- Workaround for http://jira.codehaus.org/browse/MASSEMBLY-422 -->
+ <!-- 420(dec) = 644(oct) -->
+ <fileMode>420</fileMode>
+ <!-- 493(dec) = 755(oct) -->
+ <directoryMode>493</directoryMode>
+ <defaultDirectoryMode>493</defaultDirectoryMode>
+ </archiverConfig>
+ </configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>