aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-docs/src/pages/analysis/scan
diff options
context:
space:
mode:
authorPhilippe Perrin <philippe.perrin@sonarsource.com>2021-04-20 17:34:56 +0200
committersonartech <sonartech@sonarsource.com>2021-04-26 20:03:35 +0000
commit7c6219713b8777183742798ff74b5467f424f535 (patch)
tree11a9aaf2522adc7c4b889ed94124dae3a7bc91a3 /server/sonar-docs/src/pages/analysis/scan
parentef4e8f0650d828b862810e4365c70f3fd2201ecd (diff)
downloadsonarqube-7c6219713b8777183742798ff74b5467f424f535.tar.gz
sonarqube-7c6219713b8777183742798ff74b5467f424f535.zip
SONAR-14725 Remove embedded documentation's calls to the update-center
Diffstat (limited to 'server/sonar-docs/src/pages/analysis/scan')
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-ant.md7
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-azure-devops.md6
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md6
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-jenkins.md6
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-maven.md6
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md8
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner.md6
7 files changed, 43 insertions, 2 deletions
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-ant.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-ant.md
index bf4507c3fdd..9129c3f0945 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-ant.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-ant.md
@@ -3,13 +3,18 @@ title: SonarScanner for Ant
url: /analysis/scan/sonarscanner-for-ant/
---
+<!-- static -->
<update-center updatecenterkey="scannerant"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-ant.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
The SonarScanner for Ant provides a `task` to allow integration of SonarQube analysis into an Apache Ant build script.
The SonarScanner for Ant is an Ant Task that is a wrapper of [SonarScanner](/analysis/scan/sonarscanner/), which works by invoking SonarScanner and passing to it all [properties](/analysis/analysis-parameters/) named following a `sonar.*` convention. This has the downside of not being very Ant-y, but the upside of providing instant availability of any new analysis parameter introduced by a new version of SonarQube. Therefore, successful use of the SonarScanner for Ant requires strict adherence to the property names shown below.
-
## Using the SonarScanner for Ant
Define a new sonar Ant target in your Ant build script:
```
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-azure-devops.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-azure-devops.md
index 431e7cd6e65..d95a6fb25b2 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-azure-devops.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-azure-devops.md
@@ -3,7 +3,13 @@ title: SonarScanner for Azure DevOps
url: /analysis/scan/sonarscanner-for-azure-devops/
---
+<!-- static -->
<update-center updatecenterkey="scannerazure"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-azure.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
The [SonarScanner for Azure DevOps](https://marketplace.visualstudio.com/items?itemName=SonarSource.sonarqube) makes it easy to integrate analysis into your build pipeline. The extension allows the analysis of all languages supported by SonarQube.
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md
index 23bcc653a95..aa01e9a40c4 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md
@@ -3,7 +3,13 @@ title: SonarScanner for Gradle
url: /analysis/scan/sonarscanner-for-gradle/
---
+<!-- static -->
<update-center updatecenterkey="scannergradle"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-gradle.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
The SonarScanner for Gradle provides an easy way to start SonarQube analysis of a Gradle project.
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-jenkins.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-jenkins.md
index 7ee272fd082..aa1e0481f37 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-jenkins.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-jenkins.md
@@ -3,7 +3,13 @@ title: SonarScanner for Jenkins
url: /analysis/scan/sonarscanner-for-jenkins/
---
+<!-- static -->
<update-center updatecenterkey="scannerjenkins"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-jenkins.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
This plugin lets you centralize the configuration of SonarQube server connection details in Jenkins global configuration.
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-maven.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-maven.md
index 0b02c880a30..79fa78b392b 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-maven.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-maven.md
@@ -3,7 +3,13 @@ title: SonarScanner for Maven
url: /analysis/scan/sonarscanner-for-maven/
---
+<!-- static -->
<update-center updatecenterkey="scannermaven"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-maven.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
The SonarScanner for Maven is recommended as the default scanner for Maven projects.
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md
index e972bd48ae8..47b650509ac 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-msbuild.md
@@ -4,7 +4,13 @@ title: SonarScanner for .NET
---
<!-- sonarqube -->
+<!-- static -->
<update-center updatecenterkey="scannermsbuild"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner-msbuild.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
<!-- /sonarqube -->
<!-- sonarcloud -->
@@ -17,7 +23,7 @@ title: SonarScanner for .NET
[[info]]
| Since version 5.0, the SonarScanner for MSBuild is now the SonarScanner for .NET.
-| documentation is updated with that new name, artifacts and links will remain with the old name for now.
+| Documentation is updated with that new name, artifacts and links will remain with the old name for now.
The SonarScanner for .NET is the recommended way to launch an analysis for projects/solutions using MSBuild or dotnet command as a build tool. It is the result of a [collaboration between SonarSource and Microsoft](https://www.sonarqube.org/announcing-sonarqube-integration-with-msbuild-and-team-build/).
diff --git a/server/sonar-docs/src/pages/analysis/scan/sonarscanner.md b/server/sonar-docs/src/pages/analysis/scan/sonarscanner.md
index 16d1c2616db..50393459c60 100644
--- a/server/sonar-docs/src/pages/analysis/scan/sonarscanner.md
+++ b/server/sonar-docs/src/pages/analysis/scan/sonarscanner.md
@@ -3,7 +3,13 @@ title: SonarScanner
url: /analysis/scan/sonarscanner/
---
+<!-- static -->
<update-center updatecenterkey="scannercli"></update-center>
+<!-- /static -->
+<!-- embedded -->
+[[info]]
+| See the [online documentation](https://redirect.sonarsource.com/doc/download-scanner.html) to get more details on the latest version of the scanner and how to download it.
+<!-- /embedded -->
The SonarScanner is the scanner to use when there is no specific scanner for your build system.