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, 2 insertions, 3 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 85ee265ffca..ee3c8fc7c8d 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 = 340000000 - def maxLength = 371000000 + def minLength = 330000000 + def maxLength = 361000000 def length = archiveFile.get().asFile.length() if (length < minLength) diff --git a/sonar-application/bundled_plugins.gradle b/sonar-application/bundled_plugins.gradle index 3bd5747ed9a..2704e429a55 100644 --- a/sonar-application/bundled_plugins.gradle +++ b/sonar-application/bundled_plugins.gradle @@ -1,5 +1,4 @@ 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' |