]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-19410 Embed the Clean as You Code plugin
authorPhilippe Perrin <philippe.perrin@sonarsource.com>
Tue, 13 Jun 2023 11:20:02 +0000 (13:20 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 14 Jun 2023 12:35:53 +0000 (12:35 +0000)
build.gradle
sonar-application/build.gradle
sonar-application/bundled_plugins.gradle

index a4b500073de8cd17465177beeba977b3d8d5286a..8d46449357bcdbc59d0b765238a9f6bb7d46a757 100644 (file)
@@ -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'
index bc479692c4e92fa04e9d2172b86ec9aa90159481..ddd269c07ef7b2de371dece93c41a0b46f10790d 100644 (file)
@@ -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)
index 2704e429a55dec0fd7407b740d3b00419d69c092..c374dfe8332f905096320d41214aaf33e7c38f45 100644 (file)
@@ -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"