aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/build.gradle
diff options
context:
space:
mode:
authorSteve Marion <steve.marion@sonarsource.com>2024-12-16 11:48:52 +0100
committersonartech <sonartech@sonarsource.com>2024-12-31 20:03:06 +0000
commit7d6e9e42e42a982bcb6648a2ef161293642b9415 (patch)
treeb762a668c979d3b62ee859c3ad2ae2a785be539a /sonar-application/build.gradle
parent928e495ba84502a6b95a1bd64ae725f94de89bb6 (diff)
downloadsonarqube-7d6e9e42e42a982bcb6648a2ef161293642b9415.tar.gz
sonarqube-7d6e9e42e42a982bcb6648a2ef161293642b9415.zip
SONAR-24053 Replace expression language usage by simple message interpolation for validation error messages.
Remove dependency on org.glassfish.expressly:expressly.
Diffstat (limited to 'sonar-application/build.gradle')
-rw-r--r--sonar-application/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 9d6902f7337..f183c409cf7 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -348,7 +348,7 @@ zip {
//tolerance will allow for some growth in the archive size.
def expectedSize = 830_000_000
//We set a tolerance of 15MB to avoid failing the build for small differences in the archive size.
- def tolerance = 15000000
+ def tolerance = 15_000_000
def minArchiveSize = expectedSize - tolerance
def maxArchiveSize = expectedSize + tolerance