aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Blenessy <saberduck@users.noreply.github.com>2024-11-28 19:17:08 +0100
committersonartech <sonartech@sonarsource.com>2024-11-28 20:02:59 +0000
commite9e45f66c897c36641a807e2704aa532094a496b (patch)
tree0fda64b37190cfcc69002e8d4ef5d5ecbbe49a6b
parentec0140586d5e8739f7522c6c05f0031433a541f9 (diff)
downloadsonarqube-e9e45f66c897c36641a807e2704aa532094a496b.tar.gz
sonarqube-e9e45f66c897c36641a807e2704aa532094a496b.zip
SONAR-23794 Upgrade JS/TS/CSS analyzer to 10.18.0.28572 (#12431)
-rw-r--r--build.gradle2
-rw-r--r--sonar-application/build.gradle2
2 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index 59eaf0d570d..70908ac0851 100644
--- a/build.gradle
+++ b/build.gradle
@@ -285,7 +285,7 @@ subprojects {
dependency 'org.sonarsource.jacoco:sonar-jacoco-plugin:1.3.0.1538'
dependency 'org.sonarsource.java:sonar-java-plugin:8.6.0.37351'
dependency 'org.sonarsource.java:sonar-java-symbolic-execution-plugin:8.6.0.37351'
- dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.17.0.28100'
+ dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.18.0.28572'
dependency 'org.sonarsource.php:sonar-php-plugin:3.40.0.12590'
dependency 'org.sonarsource.plugins.cayc:sonar-cayc-plugin:2.4.0.2018'
dependency 'org.sonarsource.python:sonar-python-plugin:4.24.0.18631'
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index 50f06c839ad..d5f4f2e864a 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -342,7 +342,7 @@ zip {
//When the archive size increases due to dependencies, the expected size should be updated as well.
//Bump the expected size by at least 10 more megabytes than what is strictly needed, this in conjunction with the
//tolerance will allow for some growth in the archive size.
- def expectedSize = 745000000
+ def expectedSize = 790_000_000
//We set a tolerance of 15MB to avoid failing the build for small differences in the archive size.
def tolerance = 15000000
def minArchiveSize = expectedSize - tolerance