aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core
diff options
context:
space:
mode:
authorJulien HENRY <julien.henry@sonarsource.com>2017-07-25 10:00:57 +0200
committerJulien HENRY <julien.henry@sonarsource.com>2017-08-07 11:44:06 +0200
commit84c8b435975e605d532cc3dfb81dddcb830aa79c (patch)
treeb2f066e35e7ac7353a6259df8f65b3dd80987f78 /sonar-core
parent62c163c5b6e4d42117a8ba08dcadbfb27a7a27c5 (diff)
downloadsonarqube-84c8b435975e605d532cc3dfb81dddcb830aa79c.tar.gz
sonarqube-84c8b435975e605d532cc3dfb81dddcb830aa79c.zip
SONAR-9575 Add incremental plugin to privileged plugins
Diffstat (limited to 'sonar-core')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java2
1 files changed, 1 insertions, 1 deletions
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<String> PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance", "billing", "developer");
+ private static final Set<String> PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance", "billing", "developer", "incremental");
public static final Version COMPATIBILITY_MODE_MAX_VERSION = Version.create("5.2");