diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-13 18:38:33 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-13 19:06:38 +0100 |
commit | e0b37227dbc3c6f9668acae286348d738c55349b (patch) | |
tree | 7f0bccd39c4c987f6f8ab12a9d5f5c5602410876 | |
parent | 47d1b68933bdc85aed1c90a2fd8e26bb595f9bb7 (diff) | |
download | sonarqube-e0b37227dbc3c6f9668acae286348d738c55349b.tar.gz sonarqube-e0b37227dbc3c6f9668acae286348d738c55349b.zip |
SONAR-1896 update property descriptions
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java index 55ff57b0b00..0f5c04e004a 100644 --- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java +++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java @@ -175,8 +175,8 @@ import java.util.List; category = CoreProperties.CATEGORY_GENERAL), @Property( key = CoreProperties.PROJECT_INCLUSIONS_PROPERTY, - name = "File Inclusions", - description = "Define the file sources to analyze", + name = "Source File Inclusions", + description = "Patterns used to include some source files and only those ones during analysis", project = true, global = true, multiValues = true, @@ -184,28 +184,28 @@ import java.util.List; @Property( key = CoreProperties.PROJECT_TEST_INCLUSIONS_PROPERTY, name = "Test File Inclusions", - description = "Define the test files to analyze", + description = "Patterns used to include some test files and only those ones during analysis", project = true, global = true, multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.GLOBAL_EXCLUSIONS_PROPERTY, - name = "Global source exclusions", - description = "Exclude sources from code analysis. Applies to every project. Cannot be overriden. Changes will be applied during next code analysis.", + name = "Global Source File Exclusions", + description = "Patterns used to exclude some source files from analysis. They apply to every project and cannot be overriden.", multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.GLOBAL_TEST_EXCLUSIONS_PROPERTY, name = "Global Test File Exclusions", - description = "Exclude tests from code analysis. Applies to every project. Cannot be overriden.", + description = "Patterns used to exclude some test files from analysis. They apply to every project and cannot be overriden.", multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS, defaultValue = CoreProperties.GLOBAL_TEST_EXCLUSIONS_DEFAULT), @Property( key = CoreProperties.PROJECT_EXCLUSIONS_PROPERTY, - name = "File Exclusions", - description = "Exclude sources from code analysis", + name = "Source File Exclusions", + description = "Patterns used to exclude some source files from analysis", project = true, global = true, multiValues = true, @@ -213,7 +213,7 @@ import java.util.List; @Property( key = CoreProperties.PROJECT_TEST_EXCLUSIONS_PROPERTY, name = "Test File Exclusions", - description = "Exclude tests from code analysis", + description = "Patterns used to exclude some test files from analysis", project = true, global = true, multiValues = true, |