aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatteo Mara <matteo.mara@sonarsource.com>2023-09-04 10:50:24 +0200
committersonartech <sonartech@sonarsource.com>2023-09-04 15:48:18 +0000
commita506cb857145802319545ff8ca4d4e5258fc8f67 (patch)
treeab94369b2f225593e9b2344f4b1511e8c9347c6b
parent608505113eca9decafdc66172e97cd73fa8667d2 (diff)
downloadsonarqube-a506cb857145802319545ff8ca4d4e5258fc8f67.tar.gz
sonarqube-a506cb857145802319545ff8ca4d4e5258fc8f67.zip
SONAR-20335 Upgrade gradle scanner to 4.3.1.3277
-rw-r--r--build.gradle2
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/BitbucketPipelinesTutorial-it.tsx.snap4
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap4
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/GitLabCITutorial-it.tsx.snap4
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-it.tsx.snap16
-rw-r--r--server/sonar-web/src/main/js/components/tutorials/other/__tests__/__snapshots__/OtherTutorial-it.tsx.snap2
-rw-r--r--server/sonar-web/src/main/js/helpers/constants.ts2
7 files changed, 17 insertions, 17 deletions
diff --git a/build.gradle b/build.gradle
index 170dba87fd2..9b7c4027944 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,7 +14,7 @@ plugins {
id "de.undercouch.download" version "5.4.0" apply false
id 'io.spring.dependency-management' version '1.1.0'
id "org.cyclonedx.bom" version "1.7.4" apply false
- id 'org.sonarqube' version '4.2.1.3168'
+ id 'org.sonarqube' version '4.3.1.3277'
}
if (!JavaVersion.current().isCompatibleWith(VERSION_17)) {
diff --git a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/BitbucketPipelinesTutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/BitbucketPipelinesTutorial-it.tsx.snap
index 80771e51eee..efae878db07 100644
--- a/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/BitbucketPipelinesTutorial-it.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/bitbucket-pipelines/__tests__/__snapshots__/BitbucketPipelinesTutorial-it.tsx.snap
@@ -97,7 +97,7 @@ pipelines:
exports[`should follow and complete all steps: Groovy: build.gradle 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -110,7 +110,7 @@ sonar {
exports[`should follow and complete all steps: Kotlin: build.gradle.kts 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
diff --git a/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap
index a67c11b049b..7118309d008 100644
--- a/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap
@@ -234,7 +234,7 @@ jobs:
exports[`should follow and complete all steps: Groovy: build.gradle 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -247,7 +247,7 @@ sonar {
exports[`should follow and complete all steps: Kotlin: build.gradle.kts 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
diff --git a/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/GitLabCITutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/GitLabCITutorial-it.tsx.snap
index 95e5ac39f5f..55d57848a20 100644
--- a/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/GitLabCITutorial-it.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/gitlabci/__tests__/__snapshots__/GitLabCITutorial-it.tsx.snap
@@ -93,7 +93,7 @@ sonarqube-vulnerability-report:
exports[`should follow and complete all steps: Groovy: build.gradle 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -107,7 +107,7 @@ sonar {
exports[`should follow and complete all steps: Kotlin: build.gradle.kts 1`] = `
"plugins {
- id ("org.sonarqube") version "4.2.1.3168"
+ id ("org.sonarqube") version "4.3.1.3277"
}
sonar {
diff --git a/server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-it.tsx.snap
index 9230954e615..381e5a7529f 100644
--- a/server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-it.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/jenkins/__tests__/__snapshots__/JenkinsTutorial-it.tsx.snap
@@ -2,7 +2,7 @@
exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -15,7 +15,7 @@ sonar {
exports[`bitbucket: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
@@ -209,7 +209,7 @@ exports[`bitbucket: can select devops platform and complete all the steps with c
exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -222,7 +222,7 @@ sonar {
exports[`bitbucketcloud: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
@@ -416,7 +416,7 @@ exports[`bitbucketcloud: can select devops platform and complete all the steps w
exports[`github: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -429,7 +429,7 @@ sonar {
exports[`github: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
@@ -623,7 +623,7 @@ exports[`github: can select devops platform and complete all the steps with copy
exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: Groovy: build.gradle file 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}
sonar {
@@ -636,7 +636,7 @@ sonar {
exports[`gitlab: can select devops platform and complete all the steps with copying code snippets: Kotlin: build.gradle.kts file 1`] = `
"plugins {
- id("org.sonarqube") version "4.2.1.3168"
+ id("org.sonarqube") version "4.3.1.3277"
}
sonar {
diff --git a/server/sonar-web/src/main/js/components/tutorials/other/__tests__/__snapshots__/OtherTutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/other/__tests__/__snapshots__/OtherTutorial-it.tsx.snap
index 03ee8670e25..54721435bb5 100644
--- a/server/sonar-web/src/main/js/components/tutorials/other/__tests__/__snapshots__/OtherTutorial-it.tsx.snap
+++ b/server/sonar-web/src/main/js/components/tutorials/other/__tests__/__snapshots__/OtherTutorial-it.tsx.snap
@@ -84,7 +84,7 @@ exports[`can choose build tools and copy provided settings: gradle: execute scan
exports[`can choose build tools and copy provided settings: gradle: sonarqube plugin 1`] = `
"plugins {
- id "org.sonarqube" version "4.2.1.3168"
+ id "org.sonarqube" version "4.3.1.3277"
}"
`;
diff --git a/server/sonar-web/src/main/js/helpers/constants.ts b/server/sonar-web/src/main/js/helpers/constants.ts
index 17615740c75..393b037269e 100644
--- a/server/sonar-web/src/main/js/helpers/constants.ts
+++ b/server/sonar-web/src/main/js/helpers/constants.ts
@@ -98,4 +98,4 @@ export const IMPORT_COMPATIBLE_ALMS = [
AlmKeys.GitLab,
];
-export const GRADLE_SCANNER_VERSION = '4.2.1.3168';
+export const GRADLE_SCANNER_VERSION = '4.3.1.3277';