]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11894 Embed SAML, GitHub Auth plugins in Community edition+
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Fri, 14 Jun 2019 08:56:53 +0000 (10:56 +0200)
committerSonarTech <sonartech@sonarsource.com>
Fri, 14 Jun 2019 18:21:12 +0000 (20:21 +0200)
sonar-application/build.gradle

index 6a45aa0a8f0125164fe9df3d09ed7341d639c5b8..f5b74aa154e40e63c3a6a8f903ed77d823d764af 100644 (file)
@@ -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")