diff options
author | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2013-02-18 11:32:45 +0100 |
---|---|---|
committer | Fabrice Bellingard <fabrice.bellingard@sonarsource.com> | 2013-02-18 11:32:45 +0100 |
commit | 3037591f34671912468e02faf6a72c08a8303e0c (patch) | |
tree | e99297cc060324fdc9bb9204498bfa36f669f165 | |
parent | dae9ef9559ba41d07cce87db1c5ca11fc43fecad (diff) | |
download | sonarqube-3037591f34671912468e02faf6a72c08a8303e0c.tar.gz sonarqube-3037591f34671912468e02faf6a72c08a8303e0c.zip |
SONAR-3108 Improve description of the exclusion property
-rw-r--r-- | plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java b/plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java index c6f59261437..dcb5903e84f 100644 --- a/plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java +++ b/plugins/sonar-cpd-plugin/src/main/java/org/sonar/plugins/cpd/CpdPlugin.java @@ -55,7 +55,8 @@ import java.util.List; key = CoreProperties.CPD_EXCLUSIONS, defaultValue = "", name = "Duplication exclusions", - description = "Patterns used to exclude some source files from the duplication detection mechanism.", + description = "Patterns used to exclude some source files from the duplication detection mechanism. " + + "See the \"Exclusions\" category to know how to use wildcards to specify this property.", project = true, module = true, global = true, |