diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-02-10 09:09:05 +0100 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-02-24 15:54:03 +0100 |
commit | 9c6d5afbd211792c73c51e51afa02133107bf405 (patch) | |
tree | f5b49ff8d558aa813c0164e3d1612e522278b562 /sonar-core | |
parent | 58cc54c1739269425ae474383e860532dd2beeed (diff) | |
download | sonarqube-9c6d5afbd211792c73c51e51afa02133107bf405.tar.gz sonarqube-9c6d5afbd211792c73c51e51afa02133107bf405.zip |
accept Governance plugin as a privileged plugin
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java | 2 |
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 56b24b284e2..44b90ae7d55 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"); + private static final Set<String> PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance"); public static final Version COMPATIBILITY_MODE_MAX_VERSION = Version.create("5.2"); |