]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3895 move settings to the category 'general'
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 7 Nov 2012 09:23:14 +0000 (10:23 +0100)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 7 Nov 2012 09:23:14 +0000 (10:23 +0100)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java

index 2816675c32e56752d626a6672fda1a9544ab5985..a3c2ff3561b206463ddbdb6a936f63d5e0826122 100644 (file)
@@ -328,16 +328,19 @@ import java.util.List;
     defaultValue = "false",
     name = "Dry Run",
     type = PropertyType.BOOLEAN,
-    global = false, project = false),
+    global = false, project = false,
+    category = CoreProperties.CATEGORY_GENERAL),
   @Property(
     key = CoreProperties.DRY_RUN_INCLUDE_PLUGINS,
     name = "Plugins accepted for dry run",
-    global = true, project = false),
+    global = true, project = false,
+    category = CoreProperties.CATEGORY_GENERAL),
   @Property(
     key = CoreProperties.DRY_RUN_EXCLUDE_PLUGINS,
     name = "Plugins excluded for dry run",
     global = true, project = false,
-    defaultValue = "devcockpit,pdfreport,report,scmactivity,views"),
+    defaultValue = "devcockpit,pdfreport,report,scmactivity,views",
+    category = CoreProperties.CATEGORY_GENERAL),
   @Property(
     key = "sonar.dryRun.export.path",
     defaultValue = "dryRun.json",