Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SCANCLI-174 Bugfix release #216

Merged
merged 2 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions it/src/test/java/com/sonarsource/scanner/it/ScannerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public void should_use_environment_prop() {

assertThat(buildResult.isSuccess()).isFalse();
assertThat(buildResult.getLogs())
.contains("Failed to query server version: Not Found");
.contains("Failed to query server version: HTTP 404 Not Found");
}

@Test
Expand All @@ -216,7 +216,7 @@ public void should_fail_if_unable_to_connect() {
assertThat(result.isSuccess()).isFalse();
// with the following message
assertThat(result.getLogs())
.contains("Failed to query server version: Not Found");
.contains("Failed to query server version: HTTP 404 Not Found");
}

// SONARPLUGINS-3574
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>org.sonarsource.scanner.cli</groupId>
<artifactId>sonar-scanner-cli</artifactId>
<version>7.1-SNAPSHOT</version>
<version>7.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SonarScanner CLI</name>
<url>https://docs.sonarsource.com/sonarqube/latest/analyzing-source-code/scanners/sonarscanner/</url>
Expand Down Expand Up @@ -81,7 +81,7 @@
<dependency>
<groupId>org.sonarsource.scanner.lib</groupId>
<artifactId>sonar-scanner-java-library</artifactId>
<version>3.2.1.385</version>
<version>3.2.2.411</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down