aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2013-02-13 17:13:08 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2013-02-13 17:13:08 +0100
commit1e869c8afbf53b4ab01a74f77e9af732de2666be (patch)
tree65a9f496da170a5d09943169ef64bbadd481e6af /plugins
parent322e1b1f33f4809ddf6f3f6b1cfae678bb667334 (diff)
downloadsonarqube-1e869c8afbf53b4ab01a74f77e9af732de2666be.tar.gz
sonarqube-1e869c8afbf53b4ab01a74f77e9af732de2666be.zip
SONAR-1896 Rename names of properties
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java44
1 files 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,