]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3754 Use multi-values for a couple of properties
authorDavid Gageot <david@gageot.net>
Fri, 21 Sep 2012 06:40:32 +0000 (08:40 +0200)
committerDavid Gageot <david@gageot.net>
Fri, 21 Sep 2012 06:45:07 +0000 (08:45 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java
plugins/sonar-findbugs-plugin/src/main/java/org/sonar/plugins/findbugs/FindbugsPlugin.java

index 0642c5459bf85b6d1e38d1e6b22370851ec5c805..af0279a478d3f1aa2f5c0bc97887a69d73b7a841 100644 (file)
@@ -170,9 +170,10 @@ import java.util.List;
   @Property(
     key = CoreProperties.CORE_SKIPPED_MODULES_PROPERTY,
     name = "Exclude modules",
-    description = "Maven artifact ids of modules to exclude (comma-separated).",
+    description = "Maven artifact ids of modules to exclude.",
     project = true,
     global = false,
+    multiValues = true,
     category = CoreProperties.CATEGORY_GENERAL),
   @Property(
     key = CoreProperties.CORE_FORCE_AUTHENTICATION_PROPERTY,
index cb2da99ec37bba423d1f3f2ca6391a69ae477268..c38f73aae77bce5ef197af9df2cdc1754ae9c136 100644 (file)
@@ -52,8 +52,12 @@ import java.util.List;
   @Property(
     key = FindbugsConstants.EXCLUDES_FILTERS_PROPERTY,
     name = "Excludes Filters",
-    description = "Paths to findbugs filter-files with exclusions (comma-separated).",
-    project = true, module = true, global = true)})
+    description = "Paths to findbugs filter-files with exclusions.",
+    project = true,
+    module = true,
+    global = true,
+    multiValues = true
+  )})
 public class FindbugsPlugin extends SonarPlugin {
 
   public List<Class<? extends Extension>> getExtensions() {