From c927c0f08c432b74e667762f678621d11f0e8300 Mon Sep 17 00:00:00 2001 From: "G. Ann Campbell" Date: Thu, 28 Feb 2019 09:42:20 +0100 Subject: [PATCH] DOC drop `sonar.cpd.exclusions` `sonar.cpd.exclusions` can be set through the UI and the patterns are documented there. --- server/sonar-docs/src/pages/analysis/analysis-parameters.md | 1 - 1 file changed, 1 deletion(-) diff --git a/server/sonar-docs/src/pages/analysis/analysis-parameters.md b/server/sonar-docs/src/pages/analysis/analysis-parameters.md index 4b0898d5e79..e83066e4988 100644 --- a/server/sonar-docs/src/pages/analysis/analysis-parameters.md +++ b/server/sonar-docs/src/pages/analysis/analysis-parameters.md @@ -77,7 +77,6 @@ Key | Description | Default ### Duplications Key | Description | Default ---|----|--- -`sonar.cpd.exclusions` | Comma-delimited list of file path patterns to be excluded from duplication detection | `sonar.cpd.${language}.minimumtokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (overide with `sonar.cpd.${language}.minimumTokens`) spread across at least 10 lines of code (override with `sonar.cpd.${language}.minimumLines`). For Java projects, a piece of code is considered duplicated when there is a series of at least 10 statements in a row, regardless of the number of tokens and lines. This threshold cannot be overridden. | 100 `sonar.cpd.${language}.minimumLines` | (see above) | 10 -- 2.39.5