From: Julien HENRY Date: Tue, 25 Jul 2017 08:00:57 +0000 (+0200) Subject: SONAR-9575 Add incremental plugin to privileged plugins X-Git-Tag: 6.6-RC1~749 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=84c8b435975e605d532cc3dfb81dddcb830aa79c;p=sonarqube.git SONAR-9575 Add incremental plugin to privileged plugins --- diff --git a/sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java b/sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java index 7738434189d..2ba2427e8d6 100644 --- a/sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java +++ b/sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java @@ -55,7 +55,7 @@ public class PluginLoader { * Defines the base keys (defined by {@link #basePluginKey(PluginInfo, Map)}) of the plugins which are allowed to * run a full server extensions. */ - private static final Set PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance", "billing", "developer"); + private static final Set PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance", "billing", "developer", "incremental"); public static final Version COMPATIBILITY_MODE_MAX_VERSION = Version.create("5.2");