diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:55:21 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-11 17:55:21 +0100 |
commit | 25aee89e298a97af4366f593fbf4bac76abc5cea (patch) | |
tree | d32423f97ffa86f1263c6f391bc8569723c7ea53 /sonar-application/pom.xml | |
parent | 93c1c2190e7f8cfe04195ca1ad3afbdc39482e4a (diff) | |
download | sonarqube-25aee89e298a97af4366f593fbf4bac76abc5cea.tar.gz sonarqube-25aee89e298a97af4366f593fbf4bac76abc5cea.zip |
Fix enforcer rule on size of zip
Size range was too small to support the different build environments.
Diffstat (limited to 'sonar-application/pom.xml')
-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 c987973d1db..4660e7bafc2 100644 --- a/sonar-application/pom.xml +++ b/sonar-application/pom.xml @@ -211,7 +211,7 @@ <rules> <requireFilesSize> <maxsize>56000000</maxsize> - <minsize>55000000</minsize> + <minsize>53000000</minsize> <files> <file>${project.build.directory}/sonar-${project.version}.zip</file> </files> |