]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15433 Bitbucket auth plugin is not allowed anymore (feature is embedded)
authorPierre <pierre.guillot@sonarsource.com>
Fri, 24 Sep 2021 14:19:02 +0000 (16:19 +0200)
committersonartech <sonartech@sonarsource.com>
Tue, 28 Sep 2021 20:03:12 +0000 (20:03 +0000)
server/sonar-webserver-api/src/main/java/org/sonar/server/plugins/PluginJarLoader.java

index 7f3f8d34678d5361de17b14f958ac3587443a9fd..7e0c6ffe610c947a01d3a8e8a062a8c388bdcb1d 100644 (file)
@@ -57,8 +57,8 @@ public class PluginJarLoader {
   // List of plugins that are silently removed if installed
   private static final Set<String> DEFAULT_BLACKLISTED_PLUGINS = ImmutableSet.of("scmactivity", "issuesreport", "genericcoverage");
   // List of plugins that should prevent the server to finish its startup
-  private static final Set<String> FORBIDDEN_INCOMPATIBLE_PLUGINS = ImmutableSet
-    .of("sqale", "report", "views", "authgithub", "authgitlab", "authsaml", "ldap", "scmgit", "scmsvn");
+  private static final Set<String> FORBIDDEN_INCOMPATIBLE_PLUGINS = Set.of(
+    "sqale", "report", "views", "authgithub", "authgitlab", "authbitbucket", "authsaml", "ldap", "scmgit", "scmsvn");
 
   private static final String LOAD_ERROR_GENERIC_MESSAGE = "Startup failed: Plugins can't be loaded. See web logs for more information";