You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2022/10/23 13:38:20 UTC

[inlong] branch master updated: [INLONG-6236][CVE] Unified the hive is 3.1.3 after fixed CVE-2021-34538 (#6262)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e0383515 [INLONG-6236][CVE] Unified the hive is 3.1.3 after fixed CVE-2021-34538 (#6262)
8e0383515 is described below

commit 8e0383515d3f9dba524da27d18626d818409c6a5
Author: Charles Zhang <do...@apache.org>
AuthorDate: Sun Oct 23 21:38:15 2022 +0800

    [INLONG-6236][CVE] Unified the hive is 3.1.3 after fixed CVE-2021-34538 (#6262)
---
 .../sort/protocol/node/load/HiveLoadNode.java      |  2 +-
 .../inlong/sort/protocol/StreamInfoTest.java       |  2 +-
 .../sort/protocol/node/load/HiveLoadNodeTest.java  |  2 +-
 .../org/apache/inlong/sort/hive/HiveValidator.java |  2 +-
 .../inlong/sort/parser/FlinkSqlParserTest.java     |  2 +-
 licenses/inlong-manager/LICENSE                    | 26 +++++++++---------
 licenses/inlong-sort-connectors/LICENSE            | 18 ++++++------
 licenses/inlong-sort-standalone/LICENSE            | 32 +++++++++++-----------
 8 files changed, 43 insertions(+), 43 deletions(-)

diff --git a/inlong-sort/sort-common/src/main/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNode.java b/inlong-sort/sort-common/src/main/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNode.java
index fcd93c17c..603b5bd4c 100644
--- a/inlong-sort/sort-common/src/main/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNode.java
+++ b/inlong-sort/sort-common/src/main/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNode.java
@@ -53,7 +53,7 @@ public class HiveLoadNode extends LoadNode implements InlongMetric, Serializable
     private static final String timestampPattern = "partition.time-extractor.timestamp-pattern";
     private static final String delay = "sink.partition-commit.delay";
     private static final String policyKind = "sink.partition-commit.policy.kind";
-    private static final String HIVE_VERSION = "3.1.2";
+    private static final String HIVE_VERSION = "3.1.3";
 
     @JsonProperty("tableName")
     @Nonnull
diff --git a/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/StreamInfoTest.java b/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/StreamInfoTest.java
index 45a09c5e0..92f670510 100644
--- a/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/StreamInfoTest.java
+++ b/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/StreamInfoTest.java
@@ -98,7 +98,7 @@ public class StreamInfoTest extends SerializeBaseTest<StreamInfo> {
                                 new FieldInfo("ts", new TimestampFormatInfo()))
                 );
         return new HiveLoadNode("2", "hive_output", fields, relations, null, null,
-                1, null, "myHive", "default", "test", "/opt/hive-conf", "3.1.2",
+                1, null, "myHive", "default", "test", "/opt/hive-conf", "3.1.3",
                 null, Arrays.asList(new FieldInfo("day", new LongFormatInfo())));
     }
 
diff --git a/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNodeTest.java b/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNodeTest.java
index 1bd5aef17..b9bf7f282 100644
--- a/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNodeTest.java
+++ b/inlong-sort/sort-common/src/test/java/org/apache/inlong/sort/protocol/node/load/HiveLoadNodeTest.java
@@ -38,7 +38,7 @@ public class HiveLoadNodeTest extends SerializeBaseTest<HiveLoadNode> {
                 Arrays.asList(new FieldRelation(new FieldInfo("field", new StringFormatInfo()),
                         new FieldInfo("field", new StringFormatInfo()))), null, null,
                 1, new HashMap<>(), "myHive", "default",
-                "test", "/opt/hive-conf", "3.1.2",
+                "test", "/opt/hive-conf", "3.1.3",
                 null, Arrays.asList(new FieldInfo("day", new LongFormatInfo())));
     }
 }
\ No newline at end of file
diff --git a/inlong-sort/sort-connectors/hive/src/main/java/org/apache/inlong/sort/hive/HiveValidator.java b/inlong-sort/sort-connectors/hive/src/main/java/org/apache/inlong/sort/hive/HiveValidator.java
index fb9f5f781..f16d22ff6 100644
--- a/inlong-sort/sort-connectors/hive/src/main/java/org/apache/inlong/sort/hive/HiveValidator.java
+++ b/inlong-sort/sort-connectors/hive/src/main/java/org/apache/inlong/sort/hive/HiveValidator.java
@@ -29,7 +29,7 @@ public class HiveValidator extends ConnectorDescriptorValidator {
     public static final String CONNECTOR_HIVE_VERSION = "hive-version";
     public static final String CONNECTOR_VERSION_VALUE_2_2_0 = "2.2.0";
     public static final String CONNECTOR_VERSION_VALUE_2_3_6 = "2.3.6";
-    public static final String CONNECTOR_VERSION_VALUE_3_1_2 = "3.1.2";
+    public static final String CONNECTOR_VERSION_VALUE_3_1_3 = "3.1.3";
     public static final String CONNECTOR_VERSION_VALUE_1_2_2 = "1.2.2";
     public static final String CONNECTOR_HIVE_DATABASE = "default-database";
     public static final String CONNECTOR_HIVE_TABLE = "table-name";
diff --git a/inlong-sort/sort-core/src/test/java/org/apache/inlong/sort/parser/FlinkSqlParserTest.java b/inlong-sort/sort-core/src/test/java/org/apache/inlong/sort/parser/FlinkSqlParserTest.java
index 8b4daa791..8b2161e69 100644
--- a/inlong-sort/sort-core/src/test/java/org/apache/inlong/sort/parser/FlinkSqlParserTest.java
+++ b/inlong-sort/sort-core/src/test/java/org/apache/inlong/sort/parser/FlinkSqlParserTest.java
@@ -137,7 +137,7 @@ public class FlinkSqlParserTest extends AbstractTestBase {
         return new HiveLoadNode(id, "hive_output",
                 fields, relations, null, null, 1,
                 null, "myCatalog", "default", "work2",
-                "/opt/hive/conf", "3.1.2",
+                "/opt/hive/conf", "3.1.3",
                 null, null);
     }
 
diff --git a/licenses/inlong-manager/LICENSE b/licenses/inlong-manager/LICENSE
index 29ac6db55..1990c3bfd 100644
--- a/licenses/inlong-manager/LICENSE
+++ b/licenses/inlong-manager/LICENSE
@@ -445,20 +445,20 @@ The text of each license is the standard Apache 2.0 license.
   org.apache.hbase.thirdparty:hbase-shaded-protobuf:3.5.1 - Apache HBase Patched and Relocated (Shaded) Protobuf (http://hbase.apache.org/hbase-shaded-protobuf), (Apache License, Version 2.0)
   org.hibernate.validator:hibernate-validator:6.2.3.Final - Hibernate Validator Engine (https://github.com/hibernate/hibernate-validator/tree/6.2.3.Final), (Apache License 2.0)
   com.zaxxer:HikariCP:4.0.3 - HikariCP (https://github.com/brettwooldridge/HikariCP/tree/HikariCP-4.0.3), (The Apache Software License, Version 2.0)
-  org.apache.hive:hive-common:3.1.2 - Hive Common (https://github.com/apache/hive/tree/rel/release-3.1.2/common), (Apache License, Version 2.0)
-  org.apache.hive:hive-exec:3.1.2 - Hive Query Language (https://github.com/apache/hive/tree/rel/release-3.1.2/ql), (Apache License, Version 2.0)
-  org.apache.hive:hive-jdbc:3.1.2 - Hive JDBC (https://github.com/apache/hive/tree/rel/release-3.1.2/jdbc), (Apache License, Version 2.0)
-  org.apache.hive:hive-metastore:3.1.2 - Hive Metastore (https://github.com/apache/hive/tree/rel/release-3.1.2/metastore), (Apache License, Version 2.0)
-  org.apache.hive:hive-serde:3.1.2 - Hive Serde (https://github.com/apache/hive/tree/rel/release-3.1.2/serde), (Apache License, Version 2.0)
-  org.apache.hive:hive-service:3.1.2 - Hive Service (https://github.com/apache/hive/tree/rel/release-3.1.2/service), (Apache License, Version 2.0)
-  org.apache.hive:hive-service-rpc:3.1.2 - Hive Service RPC (https://github.com/apache/hive/tree/rel/release-3.1.2/service-rpc), (Apache License, Version 2.0)
-  org.apache.hive:hive-shims:3.1.2 - Hive Shims (https://github.com/apache/hive/tree/rel/release-3.1.2/shims), (Apache License, Version 2.0)
-  org.apache.hive.shims:hive-shims-0.23:3.1.2 - Hive Shims 0.23 (https://github.com/apache/hive/tree/rel/release-3.1.2/shims/0.23), (Apache License, Version 2.0)
-  org.apache.hive.shims:hive-shims-common:3.1.2 - Hive Shims Common (https://github.com/apache/hive/tree/rel/release-3.1.2/shims/common), (Apache License, Version 2.0)
-  org.apache.hive.shims:hive-shims-scheduler:3.1.2 - Hive Shims Scheduler (https://github.com/apache/hive/tree/rel/release-3.1.2/shims/scheduler), (Apache License, Version 2.0)
-  org.apache.hive:hive-standalone-metastore:3.1.2 - Hive Standalone Metastore (https://github.com/apache/hive/tree/rel/release-3.1.2/standalone-metastore), (Apache License, Version 2.0)
+  org.apache.hive:hive-common:3.1.3 - Hive Common (https://github.com/apache/hive/tree/rel/release-3.1.3/common), (Apache License, Version 2.0)
+  org.apache.hive:hive-exec:3.1.3 - Hive Query Language (https://github.com/apache/hive/tree/rel/release-3.1.3/ql), (Apache License, Version 2.0)
+  org.apache.hive:hive-jdbc:3.1.3 - Hive JDBC (https://github.com/apache/hive/tree/rel/release-3.1.3/jdbc), (Apache License, Version 2.0)
+  org.apache.hive:hive-metastore:3.1.3 - Hive Metastore (https://github.com/apache/hive/tree/rel/release-3.1.3/metastore), (Apache License, Version 2.0)
+  org.apache.hive:hive-serde:3.1.3 - Hive Serde (https://github.com/apache/hive/tree/rel/release-3.1.3/serde), (Apache License, Version 2.0)
+  org.apache.hive:hive-service:3.1.3 - Hive Service (https://github.com/apache/hive/tree/rel/release-3.1.3/service), (Apache License, Version 2.0)
+  org.apache.hive:hive-service-rpc:3.1.3 - Hive Service RPC (https://github.com/apache/hive/tree/rel/release-3.1.3/service-rpc), (Apache License, Version 2.0)
+  org.apache.hive:hive-shims:3.1.3 - Hive Shims (https://github.com/apache/hive/tree/rel/release-3.1.3/shims), (Apache License, Version 2.0)
+  org.apache.hive.shims:hive-shims-0.23:3.1.3 - Hive Shims 0.23 (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/0.23), (Apache License, Version 2.0)
+  org.apache.hive.shims:hive-shims-common:3.1.3 - Hive Shims Common (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/common), (Apache License, Version 2.0)
+  org.apache.hive.shims:hive-shims-scheduler:3.1.3 - Hive Shims Scheduler (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/scheduler), (Apache License, Version 2.0)
+  org.apache.hive:hive-standalone-metastore:3.1.3 - Hive Standalone Metastore (https://github.com/apache/hive/tree/rel/release-3.1.3/standalone-metastore), (Apache License, Version 2.0)
   org.apache.hive:hive-storage-api:2.7.0 - Hive Storage API (https://github.com/apache/hive/tree/rel/storage-release-2.7.0/storage-api), (Apache License, Version 2.0)
-  org.apache.hive:hive-upgrade-acid:3.1.2 - Hive Upgrade Acid (https://github.com/apache/hive/tree/rel/release-3.1.2/upgrade-acid), (Apache License, Version 2.0)
+  org.apache.hive:hive-upgrade-acid:3.1.3 - Hive Upgrade Acid (https://github.com/apache/hive/tree/rel/release-3.1.3/upgrade-acid), (Apache License, Version 2.0)
   org.apache.htrace:htrace-core4:4.1.0-incubating - htrace-core4 (http://incubator.apache.org/projects/htrace.html), (The Apache Software License, Version 2.0)
   org.apache.httpcomponents:httpasyncclient:4.1.2 - Apache HttpAsyncClient (http://hc.apache.org/httpcomponents-asyncclient), (Apache License, Version 2.0)
   org.apache.httpcomponents:httpclient:4.5.13 - Apache HttpClient (http://hc.apache.org/httpcomponents-client), (Apache License, Version 2.0)
diff --git a/licenses/inlong-sort-connectors/LICENSE b/licenses/inlong-sort-connectors/LICENSE
index da5b3bcf4..002bf7464 100644
--- a/licenses/inlong-sort-connectors/LICENSE
+++ b/licenses/inlong-sort-connectors/LICENSE
@@ -707,16 +707,16 @@ The text of each license is the standard Apache 2.0 license.
   org.apache.hbase.thirdparty:hbase-shaded-netty:2.2.1 - Apache HBase Relocated (Shaded) Netty Libs (http://hbase.apache.org/hbase-shaded-netty), (Apache License, Version 2.0)
   org.apache.hbase.thirdparty:hbase-shaded-protobuf:2.2.1 - Apache HBase Patched and Relocated (Shaded) Protobuf (http://hbase.apache.org/hbase-shaded-protobuf), (Apache License, Version 2.0)
   com.zaxxer:HikariCP:4.0.3 - HikariCP (https://github.com/brettwooldridge/HikariCP/tree/HikariCP-4.0.3), (The Apache Software License, Version 2.0)
-  org.apache.hive:hive-classification:3.1.2 - Hive Classifications (https://github.com/apache/hive/tree/release-3.1.2-rc0/classification), (Apache License, Version 2.0)
-  org.apache.hive:hive-common:3.1.2 - Hive Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/common)
-  org.apache.hive:hive-exec:3.1.2 - Hive Query Language (https://github.com/apache/hive/tree/rel/release-3.1.2/ql), (Apache License, Version 2.0)
-  org.apache.hive:hive-llap-client:3.1.2 - Hive Llap Client (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-client)
-  org.apache.hive:hive-llap-common:3.1.2 - Hive Llap Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-common)
-  org.apache.hive:hive-llap-tez:3.1.2 - Hive Llap Tez (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-tez)
-  org.apache.hive:hive-serde:3.1.2 - Hive Serde (https://github.com/apache/hive/tree/release-3.1.2-rc0/serde)
-  org.apache.hive:hive-service-rpc:3.1.2 - Hive Service RPC (https://github.com/apache/hive/tree/release-3.1.2-rc0/service-rpc)
+  org.apache.hive:hive-classification:3.1.3 - Hive Classifications (https://github.com/apache/hive/tree/rel/release-3.1.3/classification), (Apache License, Version 2.0)
+  org.apache.hive:hive-common:3.1.3 - Hive Common (https://github.com/apache/hive/tree/rel/release-3.1.3/common)
+  org.apache.hive:hive-exec:3.1.3 - Hive Query Language (https://github.com/apache/hive/tree/rel/release-3.1.3/ql), (Apache License, Version 2.0)
+  org.apache.hive:hive-llap-client:3.1.3 - Hive Llap Client (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-client)
+  org.apache.hive:hive-llap-common:3.1.3 - Hive Llap Common (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-common)
+  org.apache.hive:hive-llap-tez:3.1.3 - Hive Llap Tez (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-tez)
+  org.apache.hive:hive-serde:3.1.3 - Hive Serde (https://github.com/apache/hive/tree/rel/release-3.1.3/serde)
+  org.apache.hive:hive-service-rpc:3.1.3 - Hive Service RPC (https://github.com/apache/hive/tree/rel/release-3.1.3/service-rpc)
   org.apache.hive:hive-storage-api:2.7.0 - Hive Storage API (https://github.com/apache/hive/tree/rel/storage-release-2.7.0/storage-api)
-  org.apache.hive:hive-upgrade-acid:3.1.2 - Hive Upgrade Acid (https://github.com/apache/hive/tree/release-3.1.2-rc0/upgrade-acid/)
+  org.apache.hive:hive-upgrade-acid:3.1.3 - Hive Upgrade Acid (https://github.com/apache/hive/tree/rel/release-3.1.3/upgrade-acid/)
   org.apache.htrace:htrace-core4:4.1.0-incubating - htrace-core4 (http://htrace.org/), (The Apache Software License, Version 2.0)
   org.apache.htrace:htrace-core4:4.2.0-incubating - htrace-core4 (http://htrace.org/), (The Apache Software License, Version 2.0)
   org.apache.httpcomponents:httpasyncclient:4.1.2 - Apache HttpAsyncClient (http://hc.apache.org/httpcomponents-asyncclient), (Apache License, Version 2.0)
diff --git a/licenses/inlong-sort-standalone/LICENSE b/licenses/inlong-sort-standalone/LICENSE
index 0a5cea9bc..a5cb705d1 100644
--- a/licenses/inlong-sort-standalone/LICENSE
+++ b/licenses/inlong-sort-standalone/LICENSE
@@ -404,23 +404,23 @@ The text of each license is the standard Apache 2.0 license.
   com.google.inject:guice:3.0 - Google Guice - Core Library (https://github.com/google/guice), (The Apache Software License, Version 2.0)
   com.google.inject.extensions:guice-servlet:4.0 - Google Guice - Extensions - Servlet (https://github.com/google/guice), (The Apache Software License, Version 2.0)
   com.zaxxer:HikariCP-java7:2.4.12 - HikariCP (https://github.com/brettwooldridge/HikariCP/tree/HikariCP-2.4.12), (Apache License, Version 2.0)
-  org.apache.hive:hive-classification:3.1.2 - Hive Classifications (https://github.com/apache/hive/tree/release-3.1.2-rc0/classification), (Apache License, Version 2.0)
-  org.apache.hive:hive-common:3.1.2 - Hive Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/common)
-  org.apache.hive:hive-jdbc:3.1.2 - Hive JDBC (https://github.com/apache/hive/tree/release-3.1.2-rc0/jdbc)
-  org.apache.hive:hive-llap-client:3.1.2 - Hive Llap Client (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-client)
-  org.apache.hive:hive-llap-common:3.1.2 - Hive Llap Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-common)
-  org.apache.hive:hive-llap-common:tests:3.1.2 - Hive Llap Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-common)
-  org.apache.hive:hive-llap-server:3.1.2 - Hive Llap Server (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-server)
-  org.apache.hive:hive-llap-tez:3.1.2 - Hive Llap Tez (https://github.com/apache/hive/tree/release-3.1.2-rc0/llap-tez)
-  org.apache.hive:hive-serde:3.1.2 - Hive Serde (https://github.com/apache/hive/tree/release-3.1.2-rc0/serde)
-  org.apache.hive:hive-service:3.1.2 - Hive Service (https://github.com/apache/hive/tree/release-3.1.2-rc0/service)
-  org.apache.hive:hive-service-rpc:3.1.2 - Hive Service RPC (https://github.com/apache/hive/tree/release-3.1.2-rc0/service-rpc)
-  org.apache.hive.shims:hive-shims-0.23:3.1.2 - Hive Shims 0.23 (https://github.com/apache/hive/tree/release-3.1.2-rc0/shims/0.23)
-  org.apache.hive:hive-shims:3.1.2 - Hive Shims (https://github.com/apache/hive/tree/release-3.1.2-rc0/shims)
-  org.apache.hive.shims:hive-shims-common:3.1.2 - Hive Shims Common (https://github.com/apache/hive/tree/release-3.1.2-rc0/shims/common)
-  org.apache.hive.shims:hive-shims-scheduler:3.1.2 - Hive Shims Scheduler (https://github.com/apache/hive/tree/release-3.1.2-rc0/shims/scheduler)
+  org.apache.hive:hive-classification:3.1.3 - Hive Classifications (https://github.com/apache/hive/tree/rel/release-3.1.3/classification), (Apache License, Version 2.0)
+  org.apache.hive:hive-common:3.1.3 - Hive Common (https://github.com/apache/hive/tree/rel/release-3.1.3/common)
+  org.apache.hive:hive-jdbc:3.1.3 - Hive JDBC (https://github.com/apache/hive/tree/rel/release-3.1.3/jdbc)
+  org.apache.hive:hive-llap-client:3.1.3 - Hive Llap Client (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-client)
+  org.apache.hive:hive-llap-common:3.1.3 - Hive Llap Common (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-common)
+  org.apache.hive:hive-llap-common:tests:3.1.3 - Hive Llap Common (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-common)
+  org.apache.hive:hive-llap-server:3.1.3 - Hive Llap Server (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-server)
+  org.apache.hive:hive-llap-tez:3.1.3 - Hive Llap Tez (https://github.com/apache/hive/tree/rel/release-3.1.3/llap-tez)
+  org.apache.hive:hive-serde:3.1.3 - Hive Serde (https://github.com/apache/hive/tree/rel/release-3.1.3/serde)
+  org.apache.hive:hive-service:3.1.3 - Hive Service (https://github.com/apache/hive/tree/rel/release-3.1.3/service)
+  org.apache.hive:hive-service-rpc:3.1.3 - Hive Service RPC (https://github.com/apache/hive/tree/rel/release-3.1.3/service-rpc)
+  org.apache.hive.shims:hive-shims-0.23:3.1.3 - Hive Shims 0.23 (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/0.23)
+  org.apache.hive:hive-shims:3.1.3 - Hive Shims (https://github.com/apache/hive/tree/rel/release-3.1.3/shims)
+  org.apache.hive.shims:hive-shims-common:3.1.3 - Hive Shims Common (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/common)
+  org.apache.hive.shims:hive-shims-scheduler:3.1.3 - Hive Shims Scheduler (https://github.com/apache/hive/tree/rel/release-3.1.3/shims/scheduler)
   org.apache.hive:hive-storage-api:2.7.0 - Hive Storage API (https://github.com/apache/hive/tree/rel/storage-release-2.7.0/storage-api)
-  org.apache.hive:hive-upgrade-acid:3.1.2 - Hive Upgrade Acid (https://github.com/apache/hive/tree/release-3.1.2-rc0/upgrade-acid/)
+  org.apache.hive:hive-upgrade-acid:3.1.3 - Hive Upgrade Acid (https://github.com/apache/hive/tree/rel/release-3.1.3/upgrade-acid/)
   org.apache.htrace:htrace-core4:4.1.0-incubating - htrace-core4 (http://incubator.apache.org/projects/htrace.html), (The Apache Software License, Version 2.0)
   org.apache.httpcomponents:httpasyncclient:4.1.2 - Apache HttpAsyncClient (http://hc.apache.org/httpcomponents-asyncclient), (Apache License, Version 2.0)
   org.apache.httpcomponents:httpclient:4.5.13 - Apache HttpClient (http://hc.apache.org/httpcomponents-client), (Apache License, Version 2.0)