From c1175674ce58abb27dd4c07a1b334311e51540f8 Mon Sep 17 00:00:00 2001 From: Costin Zaharia <56015273+costin-zaharia-sonarsource@users.noreply.github.com> Date: Tue, 31 Jan 2023 14:07:14 +0100 Subject: [PATCH] Bump scanner version in ITs (#6680) --- its/pom.xml | 2 +- its/src/test/java/com/sonar/it/shared/TestUtils.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/its/pom.xml b/its/pom.xml index ada7ad39da7..1bf9d63ae06 100644 --- a/its/pom.xml +++ b/its/pom.xml @@ -20,7 +20,7 @@ - 5.10.0.59947 + 5.11.0.60783 -server diff --git a/its/src/test/java/com/sonar/it/shared/TestUtils.java b/its/src/test/java/com/sonar/it/shared/TestUtils.java index d7d19d23984..fa60ead3386 100644 --- a/its/src/test/java/com/sonar/it/shared/TestUtils.java +++ b/its/src/test/java/com/sonar/it/shared/TestUtils.java @@ -141,7 +141,7 @@ private static String getProjectBaseDir(Path projectDir, String subProjectName) private static Build newScanner(Path projectDir) { // We need to set the fallback version to run from inside the IDE when the property isn't set return ScannerForMSBuild.create(projectDir.toFile()) - .setScannerVersion(System.getProperty("scannerMsbuild.version", "5.10.0.59947")) + .setScannerVersion(System.getProperty("scannerMsbuild.version", "5.11.0.60783")) // In order to be able to run tests on Azure pipelines, the AGENT_BUILDDIRECTORY environment variable // needs to be set to the analyzed project directory.