From 1e869c8afbf53b4ab01a74f77e9af732de2666be Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Wed, 13 Feb 2013 17:13:08 +0100 Subject: [PATCH] SONAR-1896 Rename names of properties --- .../org/sonar/plugins/core/CorePlugin.java | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 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 565df44a269..55ff57b0b00 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 @@ -169,51 +169,51 @@ import java.util.List; key = CoreProperties.PROJECT_LANGUAGE_PROPERTY, defaultValue = Java.KEY, name = "Default language", - description = "Default language of the source code to analyse.", + description = "Default language of the source code to analyse", project = false, global = true, category = CoreProperties.CATEGORY_GENERAL), - @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.", - multiValues = true, - category = CoreProperties.CATEGORY_EXCLUSIONS), - @Property( - key = CoreProperties.GLOBAL_TEST_EXCLUSIONS_PROPERTY, - name = "Global test exclusions", - description = "Exclude tests from code analysis. Applies to every project. Cannot be overriden. Changes will be applied during next code analysis.", - multiValues = true, - category = CoreProperties.CATEGORY_EXCLUSIONS, - defaultValue = CoreProperties.GLOBAL_TEST_EXCLUSIONS_DEFAULT), @Property( key = CoreProperties.PROJECT_INCLUSIONS_PROPERTY, - name = "Inclusions", - description = "Define the file sources to analyze. Changes will be applied during next code analysis.", + name = "File Inclusions", + description = "Define the file sources to analyze", project = true, global = true, multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.PROJECT_TEST_INCLUSIONS_PROPERTY, - name = "Test Inclusions", - description = "Define the test files to analyze. Changes will be applied during next code analysis.", + name = "Test File Inclusions", + description = "Define the test files to analyze", 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.", + 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.", + multiValues = true, + category = CoreProperties.CATEGORY_EXCLUSIONS, + defaultValue = CoreProperties.GLOBAL_TEST_EXCLUSIONS_DEFAULT), @Property( key = CoreProperties.PROJECT_EXCLUSIONS_PROPERTY, - name = "Exclusions", - description = "Exclude sources from code analysis. Changes will be applied during next code analysis.", + name = "File Exclusions", + description = "Exclude sources from code analysis", project = true, global = true, multiValues = true, category = CoreProperties.CATEGORY_EXCLUSIONS), @Property( key = CoreProperties.PROJECT_TEST_EXCLUSIONS_PROPERTY, - name = "Test Exclusions", - description = "Exclude tests from code analysis. Changes will be applied during next code analysis.", + name = "Test File Exclusions", + description = "Exclude tests from code analysis", project = true, global = true, multiValues = true, -- 2.39.5