diff options
author | Philippe Perrin <philippe.perrin@sonarsource.com> | 2023-04-04 17:50:00 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-05-31 20:02:50 +0000 |
commit | 0b68a08b7134c75ff02ee626fd3fbddf52931df6 (patch) | |
tree | f1ee544088ee06ff9db6d37b62a0a6075fd2384c | |
parent | 977d49ebdcce0b576bd4f08fe93853c2e6a73721 (diff) | |
download | sonarqube-0b68a08b7134c75ff02ee626fd3fbddf52931df6.tar.gz sonarqube-0b68a08b7134c75ff02ee626fd3fbddf52931df6.zip |
SONAR-19410 Embed the Clean as You Code plugin
-rw-r--r-- | build.gradle | 1 | ||||
-rw-r--r-- | sonar-application/build.gradle | 4 | ||||
-rw-r--r-- | sonar-application/bundled_plugins.gradle | 1 |
3 files changed, 4 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index c0abf867659..8e46c5c39b8 100644 --- a/build.gradle +++ b/build.gradle @@ -190,6 +190,7 @@ subprojects { dependency 'com.sonarsource.dbd:sonar-dbd-python-frontend-plugin:1.13.0.3408' dependency 'com.sonarsource.pli:sonar-pli-plugin:1.12.0.3443' dependency 'com.sonarsource.plsql:sonar-plsql-plugin:3.8.0.4948' + dependency 'com.sonarsource.plugins.cayc:sonar-cayc-plugin:1.0.1.310' dependency 'com.sonarsource.plugins.vb:sonar-vb-plugin:2.9.0.3341' dependency 'com.sonarsource.rpg:sonar-rpg-plugin:3.3.0.3147' dependency 'com.sonarsource.security:sonar-security-csharp-frontend-plugin:10.0.0.20234' 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' |