Skip to content

Commit 3eeb218

Browse files
committed
SCANCLI-174 Update library to fix regressions with SONAR_TOKEN and truststore
1 parent 5eaa397 commit 3eeb218

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

it/src/test/java/com/sonarsource/scanner/it/ScannerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public void should_use_environment_prop() {
190190

191191
assertThat(buildResult.isSuccess()).isFalse();
192192
assertThat(buildResult.getLogs())
193-
.contains("Failed to query server version: Not Found");
193+
.contains("Failed to query server version: HTTP 404 Not Found");
194194
}
195195

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

222222
// SONARPLUGINS-3574

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>org.sonarsource.scanner.lib</groupId>
8383
<artifactId>sonar-scanner-java-library</artifactId>
84-
<version>3.2.1.385</version>
84+
<version>3.2.2.411</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.slf4j</groupId>

0 commit comments

Comments
 (0)