aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-core/src
diff options
context:
space:
mode:
authorMichal Duda <michal.duda@sonarsource.com>2018-12-06 12:41:07 +0100
committersonartech <sonartech@sonarsource.com>2019-01-16 09:43:06 +0100
commit500260676895673cac016e76b6ec3a18a6757a0c (patch)
tree058e3540d865959a89f982345211bf6594664274 /sonar-core/src
parent0dc272fe9cb2b4e28eee4f3d93fead7265e666f9 (diff)
downloadsonarqube-500260676895673cac016e76b6ec3a18a6757a0c.tar.gz
sonarqube-500260676895673cac016e76b6ec3a18a6757a0c.zip
SONAR-11525 message fixes
Diffstat (limited to 'sonar-core/src')
-rw-r--r--sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java6
1 files changed, 3 insertions, 3 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 82b69240566..d890b865ae5 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
@@ -64,9 +64,9 @@ public class CorePropertyDefinitions {
defs.addAll(asList(
PropertyDefinition.builder(CoreProperties.MODULE_LEVEL_ARCHIVED_SETTINGS)
.name("Archived Sub-Projects Settings")
- .description("DEPRECATED - Recap of the properties that were previously configured at sub-project / module level. " +
- "These properties are not used anymore and should now be configured at project level. " +
- "Set this parameter to empty to prevent the analysis from displaying a warning.")
+ .description("DEPRECATED - List of the properties that were previously configured at sub-project / module level. " +
+ "These properties are not used anymore and should now be configured at project level. When you've made the " +
+ "necessary changes, clear this setting to prevent analysis from showing a warning about it.")
.category(CoreProperties.CATEGORY_GENERAL)
.subCategory(CoreProperties.SUBCATEGORY_MODULES)
.onlyOnQualifiers(Qualifiers.PROJECT)