From 2ec5859f5662e02504cd3ace2339c976ff763de8 Mon Sep 17 00:00:00 2001 From: Trabelsi Tobias Date: Tue, 25 Jan 2022 16:12:39 +0100 Subject: [PATCH] SONAR-15786 Encourage users to use Azure DevOps extension version 5 --- .../pages/analysis/azuredevops-integration.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/server/sonar-docs/src/pages/analysis/azuredevops-integration.md b/server/sonar-docs/src/pages/analysis/azuredevops-integration.md index 3f570f9a681..41ff90e9495 100644 --- a/server/sonar-docs/src/pages/analysis/azuredevops-integration.md +++ b/server/sonar-docs/src/pages/analysis/azuredevops-integration.md @@ -94,17 +94,17 @@ Select your build technology below to expand the instructions for configuring br | | steps: | # Prepare Analysis Configuration task -| - task: SonarQubePrepare@4 +| - task: SonarQubePrepare@5 | inputs: | SonarQube: 'YourSonarqubeServerEndpoint' | scannerMode: 'MSBuild' | projectKey: 'YourProjectKey' | | # Run Code Analysis task -| - task: SonarQubeAnalyze@4 +| - task: SonarQubeAnalyze@5 | | # Publish Quality Gate Result task -| - task: SonarQubePublish@4 +| - task: SonarQubePublish@5 | inputs: | pollingTimeoutSec: '300' | ``` @@ -135,14 +135,14 @@ Select your build technology below to expand the instructions for configuring br | | steps: | # Prepare Analysis Configuration task -| - task: SonarQubePrepare@4 +| - task: SonarQubePrepare@5 | inputs: | SonarQube: 'YourSonarqubeServerEndpoint' | scannerMode: 'Other' | extraProperties: 'sonar.projectKey=YourProjectKey' | | # Publish Quality Gate Result task -| - task: SonarQubePublish@4 +| - task: SonarQubePublish@5 | inputs: | pollingTimeoutSec: '300' | ``` @@ -167,7 +167,7 @@ Select your build technology below to expand the instructions for configuring br | | steps: | # Prepare Analysis Configuration task -| - task: SonarQubePrepare@4 +| - task: SonarQubePrepare@5 | inputs: | SonarQube: 'YourSonarqubeServerEndpoint' | scannerMode: 'CLI' @@ -175,10 +175,10 @@ Select your build technology below to expand the instructions for configuring br | cliProjectKey: 'YourProjectKey' | | # Run Code Analysis task -| - task: SonarQubeAnalyze@4 +| - task: SonarQubeAnalyze@5 | | # Publish Quality Gate Result task -| - task: SonarQubePublish@4 +| - task: SonarQubePublish@5 | inputs: | pollingTimeoutSec: '300' | ``` @@ -249,7 +249,7 @@ Select your build technology below to expand the instructions for configuring br | unzip build-wrapper.zip | | # Prepare Analysis Configuration task -| - task: SonarQubePrepare@4 +| - task: SonarQubePrepare@5 | inputs: | SonarQube: 'YourSonarqubeServerEndpoint' | scannerMode: 'CLI' @@ -265,10 +265,10 @@ Select your build technology below to expand the instructions for configuring br | ./build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw_output | | # Run Code Analysis task -| - task: SonarQubeAnalyze@4 +| - task: SonarQubeAnalyze@5 | | # Publish Quality Gate Result task -| - task: SonarQubePublish@4 +| - task: SonarQubePublish@5 | inputs: | pollingTimeoutSec: '300' | ``` -- 2.39.5