diff options
author | Eric Hartmann <hartmann.eric@gmail.com> | 2014-12-15 18:41:58 +0100 |
---|---|---|
committer | Eric Hartmann <hartmann.eric@gmail.com> | 2014-12-15 18:41:58 +0100 |
commit | 628f851869b99d557b29d74d8ce9fead1ec76cfe (patch) | |
tree | 5be790c154fb42b79db028de43d312710b2d0315 | |
parent | ab5c30df28565d53e45b46c19f293541f423c52b (diff) | |
download | sonarqube-628f851869b99d557b29d74d8ce9fead1ec76cfe.tar.gz sonarqube-628f851869b99d557b29d74d8ce9fead1ec76cfe.zip |
Readd the assembly configuration since zip file has incorrect mode
-rw-r--r-- | pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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> |