HADOOP-15584. Move httpcomponents versions in pom.xml. Contributed by Brandon Scheller.

(cherry picked from commit 76d0365190)
This commit is contained in:
Akira Ajisaka 2018-09-12 14:28:47 +09:00
parent b196130c29
commit 126b314ae8
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 6 additions and 2 deletions

View File

@ -77,6 +77,10 @@
<jackson2.version>2.9.10</jackson2.version>
<jackson2.databind.version>2.9.10.7</jackson2.databind.version>
<!-- httpcomponents versions -->
<httpclient.version>4.5.2</httpclient.version>
<httpcore.version>4.4.4</httpcore.version>
<!-- SLF4J version -->
<slf4j.version>1.7.25</slf4j.version>
@ -564,12 +568,12 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.2</version>
<version>${httpclient.version}</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.4</version>
<version>${httpcore.version}</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>