diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2017-01-05 11:24:54 +0100 |
---|---|---|
committer | Julien HENRY <henryju@yahoo.fr> | 2017-01-10 20:52:16 +0100 |
commit | fafd6a2b35d2b7947a7727b10560e1f4c0a90e81 (patch) | |
tree | 31aed5897e2e8af36effa3d4cd658fa278e6c88c /sonar-core | |
parent | b0ff5f224d41bdb89a4a42e5500ce4f830c7ab01 (diff) | |
download | sonarqube-fafd6a2b35d2b7947a7727b10560e1f4c0a90e81.tar.gz sonarqube-fafd6a2b35d2b7947a7727b10560e1f4c0a90e81.zip |
SONAR-8573 Use api/settings to load global settings
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java index f896ae44ddd..12bbe0a1185 100644 --- a/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java +++ b/sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java @@ -112,14 +112,16 @@ public class CorePropertyDefinitions { .build(), PropertyDefinition.builder(CoreProperties.PREVIEW_INCLUDE_PLUGINS) .name("Plugins accepted for Preview mode") - .description("Comma-separated list of plugin keys. Those plugins will be used during preview analyses.") + .description("List of plugin keys. Those plugins will be used during preview analyses.") .category(CoreProperties.CATEGORY_GENERAL) + .multiValues(true) .defaultValue(CoreProperties.PREVIEW_INCLUDE_PLUGINS_DEFAULT_VALUE) .build(), PropertyDefinition.builder(CoreProperties.PREVIEW_EXCLUDE_PLUGINS) .name("Plugins excluded for Preview mode") - .description("Comma-separated list of plugin keys. Those plugins will not be used during preview analyses.") + .description("List of plugin keys. Those plugins will not be used during preview analyses.") .category(CoreProperties.CATEGORY_GENERAL) + .multiValues(true) .defaultValue(CoreProperties.PREVIEW_EXCLUDE_PLUGINS_DEFAULT_VALUE) .build(), PropertyDefinition.builder(CoreProperties.CORE_AUTHENTICATOR_REALM) |