diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-04-20 14:17:31 +0200 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-04-21 16:01:31 +0200 |
commit | 59f8f04d54439ab861bafb88864adc7789e99d23 (patch) | |
tree | b0df77bc3043591663a2975d4a571bf1e361ea3e /sonar-core | |
parent | 4444bcd48f8cd7319d0b9821baeb5bdc98c7276e (diff) | |
download | sonarqube-59f8f04d54439ab861bafb88864adc7789e99d23.tar.gz sonarqube-59f8f04d54439ab861bafb88864adc7789e99d23.zip |
SONAR-9143 Stop documenting 'previous_analysis' as a valid option for the leak period
Diffstat (limited to 'sonar-core')
-rw-r--r-- | sonar-core/src/main/java/org/sonar/core/config/CorePropertyDefinitions.java | 10 |
1 files changed, 5 insertions, 5 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 aa07d4ef842..9578500f944 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 @@ -204,12 +204,12 @@ public class CorePropertyDefinitions { PropertyDefinition.builder(LEAK_PERIOD) .name("Leak Period") .deprecatedKey("sonar.timemachine.period1") - .description("Period used to compare measures and track new issues. Values are : <ul class='bullet'><li>Number of days before " + - "analysis, for example 5.</li><li>A custom date. Format is yyyy-MM-dd, for example 2010-12-25</li><li>'previous_analysis' to " + - "compare to previous analysis</li><li>'previous_version' to compare to the previous version in the project history</li>" + + .description("Period used to compare measures and track new issues. Values are : " + + "<ul class='bullet'><li>Number of days before analysis, for example 5.</li>" + + "<li>A custom date. Format is yyyy-MM-dd, for example 2010-12-25</li>" + + "<li>'previous_version' to compare to the previous version in the project history</li>" + "<li>A version, for example '1.2' or 'BASELINE'</li></ul>" + - "<p>When specifying a number of days or a date, the snapshot selected for comparison is " + - " the first one available inside the corresponding time range. </p>" + + "<p>When specifying a number of days or a date, the snapshot selected for comparison is the first one available inside the corresponding time range. </p>" + "<p>Changing this property only takes effect after subsequent project inspections.<p/>") .defaultValue(DEFAULT_LEAK_PERIOD) .category(CoreProperties.CATEGORY_GENERAL) |