]> source.dussan.org Git - sonarqube.git/commitdiff
Add "developer" to privileged plugins
authorDaniel Schwarz <daniel.schwarz@sonarsource.com>
Wed, 5 Jul 2017 10:21:19 +0000 (12:21 +0200)
committerTeryk Bellahsene <teryk@users.noreply.github.com>
Mon, 24 Jul 2017 08:19:35 +0000 (10:19 +0200)
sonar-core/src/main/java/org/sonar/core/platform/PluginLoader.java

index 09e1478f3356a4da6f628a90261dc1dbd45d0fe3..7738434189dd3b2f8b6c9533a84e4b1b441778de 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", "governance", "billing");
+  private static final Set<String> PRIVILEGED_PLUGINS_BASE_KEYS = ImmutableSet.of("views", "devcockpit", "governance", "billing", "developer");
 
   public static final Version COMPATIBILITY_MODE_MAX_VERSION = Version.create("5.2");