diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-15 12:32:00 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-15 12:32:21 +0100 |
commit | d2a1cded379c7d1955d9343ea3d671329b487665 (patch) | |
tree | f992a289efbbaf5c57109760e255f4576c773a1c | |
parent | 651ca785b19b0f85344a6d7225202bd9079b6abb (diff) | |
download | sonarqube-d2a1cded379c7d1955d9343ea3d671329b487665.tar.gz sonarqube-d2a1cded379c7d1955d9343ea3d671329b487665.zip |
Fix minimum acceptable size of zip
-rw-r--r-- | sonar-application/pom.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/pom.xml b/sonar-application/pom.xml index 4660e7bafc2..3773fbe11be 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -211,7 +211,7 @@ <rules> <requireFilesSize> <maxsize>56000000</maxsize> - <minsize>53000000</minsize> + <minsize>52000000</minsize> <files> <file>${project.build.directory}/sonar-${project.version}.zip</file> </files> |