aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2023-06-13 13:20:02 +0200
committersonartech <sonartech@sonarsource.com>2023-06-14 12:35:53 +0000
commit213f652efd570d4b7df3b89e6b31e48c5851f9aa (patch)
tree992107390ef589c6280e0a22cf913d8647d93f11
parent48b8689538428a89594ded182d8572f9959bba18 (diff)
downloadsonarqube-213f652efd570d4b7df3b89e6b31e48c5851f9aa.tar.gz
sonarqube-213f652efd570d4b7df3b89e6b31e48c5851f9aa.zip
SONAR-19410 Embed the Clean as You Code plugin
-rw-r--r--build.gradle1
-rw-r--r--sonar-application/build.gradle4
-rw-r--r--sonar-application/bundled_plugins.gradle1
3 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index a4b500073de..8d46449357b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -245,6 +245,7 @@ subprojects {
dependency 'org.sonarsource.java:sonar-java-plugin:7.20.0.31692'
dependency 'org.sonarsource.javascript:sonar-javascript-plugin:10.3.0.21893'
dependency 'org.sonarsource.php:sonar-php-plugin:3.30.0.9766'
+ dependency 'org.sonarsource.plugins.cayc:sonar-cayc-plugin:2.0.0.334'
dependency 'org.sonarsource.python:sonar-python-plugin:4.3.0.11660'
dependency 'org.sonarsource.slang:sonar-go-plugin:1.13.0.4374'
dependency 'org.sonarsource.kotlin:sonar-kotlin-plugin:2.15.0.2579'
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle
index bc479692c4e..ddd269c07ef 100644
--- a/sonar-application/build.gradle
+++ b/sonar-application/build.gradle
@@ -310,8 +310,8 @@ task zip(type: Zip, dependsOn: [configurations.compileClasspath]) {
// 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..c374dfe8332 100644
--- a/sonar-application/bundled_plugins.gradle
+++ b/sonar-application/bundled_plugins.gradle
@@ -7,6 +7,7 @@ dependencies {
bundledPlugin 'org.sonarsource.jacoco:sonar-jacoco-plugin'
bundledPlugin 'org.sonarsource.javascript:sonar-javascript-plugin'
bundledPlugin 'org.sonarsource.php:sonar-php-plugin'
+ bundledPlugin 'org.sonarsource.plugins.cayc:sonar-cayc-plugin'
bundledPlugin 'org.sonarsource.python:sonar-python-plugin'
bundledPlugin 'org.sonarsource.slang:sonar-go-plugin'
bundledPlugin "org.sonarsource.kotlin:sonar-kotlin-plugin"