From 382e45e3126fadc557464d52eb9ce73ee9d1bcaa Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Fri, 14 Jun 2019 10:56:53 +0200 Subject: [PATCH] SONAR-11894 Embed SAML, GitHub Auth plugins in Community edition+ --- sonar-application/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 6a45aa0a8f0..f5b74aa154e 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -56,6 +56,8 @@ dependencies { jdbc_mysql 'mysql:mysql-connector-java' jdbc_postgresql 'org.postgresql:postgresql' + bundledPlugin 'org.sonarsource.auth.github:sonar-auth-github-plugin:1.5.0.870@jar' + bundledPlugin 'org.sonarsource.auth.saml:sonar-auth-saml-plugin:1.1.0.181@jar' bundledPlugin 'org.sonarsource.css:sonar-css-plugin:1.0.3.724@jar' bundledPlugin "org.sonarsource.dotnet:sonar-csharp-plugin:${dotnetVersion}@jar" bundledPlugin "org.sonarsource.dotnet:sonar-vbnet-plugin:${dotnetVersion}@jar" @@ -208,8 +210,8 @@ zip.doFirst { } // Check the size of the archive zip.doLast { - def minLength = 194000000 - def maxLength = 202000000 + def minLength = 198000000 + def maxLength = 206000000 def length = archiveFile.get().asFile.length() if (length < minLength) throw new GradleException("$archiveName size ($length) too small. Min is $minLength") -- 2.39.5