]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-15786 Encourage users to use Azure DevOps extension version 5
authorTrabelsi Tobias <tobias.trabelsi@sonarsource.com>
Tue, 25 Jan 2022 15:12:39 +0000 (16:12 +0100)
committersonartech <sonartech@sonarsource.com>
Wed, 26 Jan 2022 20:02:44 +0000 (20:02 +0000)
server/sonar-docs/src/pages/analysis/azuredevops-integration.md

index 3f570f9a6818363d45fd749d75de2ea1d7f773b3..41ff90e9495635ae6e5c7280f4f10619c2a2f4d5 100644 (file)
@@ -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 <Your build command>
 |
 | # Run Code Analysis task
-| - task: SonarQubeAnalyze@4
+| - task: SonarQubeAnalyze@5
 |
 | # Publish Quality Gate Result task
-| - task: SonarQubePublish@4
+| - task: SonarQubePublish@5
 |   inputs:
 |     pollingTimeoutSec: '300'
 | ```