aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2023-04-04 17:50:00 +0200
committersonartech <sonartech@sonarsource.com>2023-05-31 20:02:50 +0000
commit0b68a08b7134c75ff02ee626fd3fbddf52931df6 (patch)
treef1ee544088ee06ff9db6d37b62a0a6075fd2384c /sonar-application
parent977d49ebdcce0b576bd4f08fe93853c2e6a73721 (diff)
downloadsonarqube-0b68a08b7134c75ff02ee626fd3fbddf52931df6.tar.gz
sonarqube-0b68a08b7134c75ff02ee626fd3fbddf52931df6.zip
SONAR-19410 Embed the Clean as You Code plugin
Diffstat (limited to 'sonar-application')
-rw-r--r--sonar-application/build.gradle4
-rw-r--r--sonar-application/bundled_plugins.gradle1
2 files changed, 3 insertions, 2 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index ee3c8fc7c8d..85ee265ffca 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -326,8 +326,8 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath, downloadElastic
// Check the size of the archive
zip.doLast {
- def minLength = 330000000
- def maxLength = 361000000
+ def minLength = 340000000
+ def maxLength = 371000000
def length = archiveFile.get().asFile.length()
if (length < minLength)
diff --git a/sonar-application/bundled_plugins.gradle b/sonar-application/bundled_plugins.gradle
index 2704e429a55..3bd5747ed9a 100644
--- a/sonar-application/bundled_plugins.gradle
+++ b/sonar-application/bundled_plugins.gradle
@@ -1,4 +1,5 @@
dependencies {
+ bundledPlugin 'com.sonarsource.plugins.cayc:sonar-cayc-plugin'
bundledPlugin "org.sonarsource.dotnet:sonar-csharp-plugin"
bundledPlugin "org.sonarsource.dotnet:sonar-vbnet-plugin"
bundledPlugin 'org.sonarsource.flex:sonar-flex-plugin'