aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorWouter Admiraal <wouter.admiraal@sonarsource.com>2022-10-28 15:36:49 +0200
committersonartech <sonartech@sonarsource.com>2022-10-28 20:03:23 +0000
commit0ac1dde5d11d646a5f45884e127965bc7aa59240 (patch)
treed9c38d580410dba31d3aed0d6b135d0d35117473 /server
parenta57bb80ea7d4c90e12c2410cb384d9152225c055 (diff)
downloadsonarqube-0ac1dde5d11d646a5f45884e127965bc7aa59240.tar.gz
sonarqube-0ac1dde5d11d646a5f45884e127965bc7aa59240.zip
[NO JIRA] Update to latest Gradle scanner
Diffstat (limited to 'server')
-rw-r--r--server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md2
-rw-r--r--server/sonar-docs/src/pages/analysis/github-integration.md2
-rw-r--r--server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md2
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/PreambuleYaml-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap4
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/ProjectKeyStep-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Gradle-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/other/commands/__tests__/__snapshots__/JavaGradle-test.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/helpers/constants.ts2
9 files changed, 10 insertions, 10 deletions
diff --git a/server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md b/server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md
index 6efd3408f3e..da79548b30e 100644
--- a/server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md
+++ b/server/sonar-docs/src/pages/analysis/bitbucket-cloud-integration.md
@@ -87,7 +87,7 @@ Click the scanner you're using below to expand the example configuration:
|
| ```
| plugins {
-| id "org.sonarqube" version "3.4.0.2513"
+| id "org.sonarqube" version "3.5.0.2730"
| }
| ```
|
diff --git a/server/sonar-docs/src/pages/analysis/github-integration.md b/server/sonar-docs/src/pages/analysis/github-integration.md
index fc0e97380c5..3ecbdb0e14c 100644
--- a/server/sonar-docs/src/pages/analysis/github-integration.md
+++ b/server/sonar-docs/src/pages/analysis/github-integration.md
@@ -173,7 +173,7 @@ Click the scanner you're using below to expand the example configuration:
|
| ```
| plugins {
-| id "org.sonarqube" version "3.4.0.2513"
+| id "org.sonarqube" version "3.5.0.2730"
| }
| ```
|
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 73d736c159e..f091c68970a 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
@@ -34,7 +34,7 @@ First, you need to activate the scanner in your build. For Gradle 2.1+, apply th
```
plugins {
- id "org.sonarqube" version "3.4.0.2513"
+ id "org.sonarqube" version "3.5.0.2730"
}
```
diff --git a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/PreambuleYaml-test.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/PreambuleYaml-test.tsx.snap
index 865884b4d5b..17dd4599905 100644
--- a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/PreambuleYaml-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/PreambuleYaml-test.tsx.snap
@@ -58,7 +58,7 @@ exports[`should render correctly for gradle 1`] = `
/>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}
sonarqube {
diff --git a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap
index 9cf9e7c5967..4259dfdb12d 100644
--- a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/__tests__/__snapshots__/Gradle-test.tsx.snap
@@ -30,7 +30,7 @@ exports[`should render correctly 1`] = `
/>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}
sonarqube {
@@ -118,7 +118,7 @@ exports[`should render correctly: without branch enabled 1`] = `
/>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}
sonarqube {
diff --git a/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/ProjectKeyStep-test.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/ProjectKeyStep-test.tsx.snap
index b6e01193cae..d1cc4389e27 100644
--- a/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/ProjectKeyStep-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/ProjectKeyStep-test.tsx.snap
@@ -145,7 +145,7 @@ exports[`should render correctly for build tool gradle 1`] = `
/>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}
sonarqube {
diff --git a/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Gradle-test.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Gradle-test.tsx.snap
index a4076143abb..c35c96fbba7 100644
--- a/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Gradle-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/jenkins/buildtool-steps/__tests__/__snapshots__/Gradle-test.tsx.snap
@@ -11,7 +11,7 @@ exports[`should render correctly 1`] = `
/>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}
sonarqube {
diff --git a/server/sonar-web/src/main/js/components/tutorials/other/commands/__tests__/__snapshots__/JavaGradle-test.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/other/commands/__tests__/__snapshots__/JavaGradle-test.tsx.snap
index 3356e83af9e..1054fc3fccf 100644
--- a/server/sonar-web/src/main/js/components/tutorials/other/commands/__tests__/__snapshots__/JavaGradle-test.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/other/commands/__tests__/__snapshots__/JavaGradle-test.tsx.snap
@@ -14,7 +14,7 @@ exports[`renders correctly 1`] = `
</InstanceMessage>
<CodeSnippet
snippet="plugins {
- id \\"org.sonarqube\\" version \\"3.4.0.2513\\"
+ id \\"org.sonarqube\\" version \\"3.5.0.2730\\"
}"
/>
<p
diff --git a/server/sonar-web/src/main/js/helpers/constants.ts b/server/sonar-web/src/main/js/helpers/constants.ts
index eb251b676ce..ea1b9c08df8 100644
--- a/server/sonar-web/src/main/js/helpers/constants.ts
+++ b/server/sonar-web/src/main/js/helpers/constants.ts
@@ -77,4 +77,4 @@ export const IMPORT_COMPATIBLE_ALM_COUNT = IMPORT_COMPATIBLE_ALMS.filter(
a => a !== AlmKeys.BitbucketCloud
).length;
-export const GRADLE_SCANNER_VERSION = '3.4.0.2513';
+export const GRADLE_SCANNER_VERSION = '3.5.0.2730';