diff options
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/build.gradle | 4 | ||||
-rw-r--r-- | sonar-application/bundled_plugins.gradle | 1 |
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' |