Fixed HttpClient dependencies

This commit is contained in:
Marcin Grzejszczak
2022-10-18 10:30:15 +02:00
parent dc43d2766c
commit ab362a3224
3 changed files with 6 additions and 6 deletions

View File

@@ -34,8 +34,8 @@
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>

View File

@@ -79,8 +79,8 @@
</dependency>
<!-- tag::httpclient[] -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<scope>compile</scope>
</dependency>
<!-- end::httpclient[] -->

View File

@@ -92,8 +92,8 @@
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.assertj</groupId>