aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorTrabelsi Tobias <tobias.trabelsi@sonarsource.com>2022-01-25 16:12:39 +0100
committersonartech <sonartech@sonarsource.com>2022-01-26 20:02:44 +0000
commit2ec5859f5662e02504cd3ace2339c976ff763de8 (patch)
tree1e04662e5d637d29a6c42b0e5b6e3830866a5792 /server
parent371baa870a7db6b0301d1b5852a7f58b0370bde8 (diff)
downloadsonarqube-2ec5859f5662e02504cd3ace2339c976ff763de8.tar.gz
sonarqube-2ec5859f5662e02504cd3ace2339c976ff763de8.zip
SONAR-15786 Encourage users to use Azure DevOps extension version 5
Diffstat (limited to 'server')
-rw-r--r--server/sonar-docs/src/pages/analysis/azuredevops-integration.md22
1 files 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 <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'
| ```