]> source.dussan.org Git - sonarqube.git/commitdiff
accept Governance plugin as a privileged plugin
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Wed, 10 Feb 2016 08:09:05 +0000 (09:09 +0100)
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>
Wed, 24 Feb 2016 14:54:03 +0000 (15:54 +0100)
sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java

index 56b24b284e24949035d1ceb8d0c785831428d5a5..44b90ae7d553d0cc2c55d4b1e6b89273e4f0ffda 100644 (file)
@@ -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");