From 37035b92d1aef9ea3f476c8c24a6cbf4dcd04ddc Mon Sep 17 00:00:00 2001 From: cynthiabethea <108268296+cynthiabethea@users.noreply.github.com> Date: Mon, 25 Jul 2022 13:04:18 +0100 Subject: [PATCH] SONAR-15544 fix minimumToken capitalization (#6320) --- server/sonar-docs/src/pages/analysis/analysis-parameters.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/sonar-docs/src/pages/analysis/analysis-parameters.md b/server/sonar-docs/src/pages/analysis/analysis-parameters.md index ea8ada49fde..7e1301b1e08 100644 --- a/server/sonar-docs/src/pages/analysis/analysis-parameters.md +++ b/server/sonar-docs/src/pages/analysis/analysis-parameters.md @@ -38,8 +38,8 @@ Key | Description | Default ### Project Identity Key | Description | Default ---|----|--- -`sonar.projectName`|Name of the project that will be displayed on the web interface.|`` for Maven projects, otherwise project key. If not provided and there is already a name in the DB, it won't be overwritten -`sonar.projectVersion` | The project version. | `` for Maven projects, otherwise "not provided" +`sonar.projectName`|Name of the project that will be displayed on the web interface.|`` for Maven projects, otherwise project key. If not provided and there is already a name in the DB, it won't be overwritten. +`sonar.projectVersion` | The project version. | `` for Maven projects, otherwise "not provided". ### Authentication By default, user authentication is required to prevent anonymous users from browsing and analyzing projects on your instance, and you need to pass these parameters when running analyses. Authentication is enforced in the global Security(/instance-administration/security/) settings. @@ -82,7 +82,7 @@ Key | Description | Default ### Duplications Key | Description | Default ---|----|--- -`sonar.cpd.${language}.minimumtokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (override 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}.minimumTokens` | A piece of code is considered duplicated as soon as there are at least 100 duplicated tokens in a row (override 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