diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-01 22:06:24 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-01 22:06:24 +0100 |
commit | a16e744e547bdf86fc3e5c51b33354505e2bf30d (patch) | |
tree | 54be57ddeb79db72833733fee2ab9dcce62c0a4b /plugins | |
parent | 639ab0ae52d143cf8b8b82c009c95e69ed2d40d7 (diff) | |
download | sonarqube-a16e744e547bdf86fc3e5c51b33354505e2bf30d.tar.gz sonarqube-a16e744e547bdf86fc3e5c51b33354505e2bf30d.zip |
Fix description of property sonar.scm.disabled
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/CorePlugin.java | 2 |
1 files changed, 1 insertions, 1 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 7aae1ad7932..49e1132f0e6 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 @@ -235,7 +235,7 @@ import java.util.List; key = CoreProperties.SCM_DISABLED_KEY, defaultValue = "false", name = "Disable the SCM Sensor", - description = "This property can be set to true in order to deactivate the SCM Sensor.", + description = "Disable the retrieval of blame information from Source Control Manager", module = false, project = true, global = true, |