Skip to content

Commit

Permalink
Bump to httpclient5 and exclude it from docker-java
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Dec 29, 2023
1 parent 6517a78 commit 05d037c
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.bonigarcia</groupId>
Expand All @@ -13,6 +15,7 @@
<brotli.version>0.1.2</brotli.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-compress.version>1.25.0</commons-compress.version>
<httpclient5.version>5.3</httpclient5.version>

<!-- provided -->
<selenium.version>4.16.1</selenium.version>
Expand Down Expand Up @@ -115,6 +118,12 @@
<groupId>com.github.docker-java</groupId>
<artifactId>docker-java-transport-httpclient5</artifactId>
<version>${docker-java.version}</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.brotli</groupId>
Expand All @@ -131,6 +140,11 @@
<artifactId>commons-compress</artifactId>
<version>${commons-compress.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>${httpclient5.version}</version>
</dependency>

<dependency>
<groupId>org.seleniumhq.selenium</groupId>
Expand Down

0 comments on commit 05d037c

Please sign in to comment.