This is an automated email from the ASF dual-hosted git repository. haonan pushed a commit to branch exclude_thrift_http in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit eabb7cb9658f8b97402a8b39daec45347280e20c Author: HTHou <[email protected]> AuthorDate: Tue Oct 21 12:12:46 2025 +0800 Exclude thrift http --- dependencies.json | 2 -- pom.xml | 9 +++++++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/dependencies.json b/dependencies.json index c2a255d7ba4..ffe74e842ef 100644 --- a/dependencies.json +++ b/dependencies.json @@ -93,8 +93,6 @@ "org.apache.commons:commons-lang3", "org.apache.commons:commons-math3", "org.apache.commons:commons-pool2", - "org.apache.httpcomponents:httpclient", - "org.apache.httpcomponents:httpcore", "com.timecho.ratis:ratis-client", "com.timecho.ratis:ratis-common", "com.timecho.ratis:ratis-grpc", diff --git a/pom.xml b/pom.xml index c86df5f482d..a9b78025502 100644 --- a/pom.xml +++ b/pom.xml @@ -213,6 +213,15 @@ <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </exclusion> + <!-- We don't use thrift http connection--> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
