Update httpclient to 4.5.13, junit to 4.13.1

This commit is contained in:
Peikun Chen 2021-03-10 11:01:45 +08:00
parent 5b43956ce4
commit d988c4e0b5
5 changed files with 33 additions and 2 deletions

View File

@ -18,7 +18,6 @@
<version.validation-api>2.0.1.Final</version.validation-api>
<version.commons-lang3>3.10</version.commons-lang3>
<version.mockito-all>1.10.18</version.mockito-all>
<version.junit>4.13</version.junit>
<version.testing>6.10</version.testing>
<version.hbase>2.2.3</version.hbase>
<version.jacoco-maven-plugin>0.8.2</version.jacoco-maven-plugin>

10
pom.xml
View File

@ -50,7 +50,9 @@
<dep.assertj-core.version>3.8.0</dep.assertj-core.version>
<dep.logback.version>1.2.3</dep.logback.version>
<dep.jmxutils.version>1.21</dep.jmxutils.version>
<dep.junit.version>4.13.1</dep.junit.version>
<dep.gcs.version>1.9.10</dep.gcs.version>
<dep.httpclient.version>4.5.13</dep.httpclient.version>
<dep.prestosql.apache.hadoop.version>3.2.0-8</dep.prestosql.apache.hadoop.version>
<carbon.version>2.0.1</carbon.version>
<dep.prestosql.version>316</dep.prestosql.version>
@ -1139,6 +1141,12 @@
</exclusions>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${dep.junit.version}</version>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>testing-postgresql-server</artifactId>
@ -1363,7 +1371,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.11</version>
<version>${dep.httpclient.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>

View File

@ -42,6 +42,12 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.airlift</groupId>
<artifactId>testing</artifactId>

View File

@ -118,6 +118,12 @@
</dependency>
<!-- for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>

View File

@ -133,6 +133,18 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>