You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by mi...@apache.org on 2023/05/10 04:16:19 UTC

[incubator-hugegraph-toolchain] branch master updated: chore: keep hadoop-hdfs-client and hadoop-common version consistent (#457)

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

ming pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git


The following commit(s) were added to refs/heads/master by this push:
     new 9293b5c3 chore: keep hadoop-hdfs-client and hadoop-common version consistent (#457)
9293b5c3 is described below

commit 9293b5c38f15fdc1e2a60ecd0de63786db159fd4
Author: l~xuan <74...@users.noreply.github.com>
AuthorDate: Wed May 10 12:16:13 2023 +0800

    chore: keep hadoop-hdfs-client and hadoop-common version consistent (#457)
    
    Co-authored-by: i_chenlixuan <i_...@cvte.com>
---
 hugegraph-dist/scripts/dependency/known-dependencies.txt | 2 +-
 hugegraph-loader/pom.xml                                 | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/hugegraph-dist/scripts/dependency/known-dependencies.txt b/hugegraph-dist/scripts/dependency/known-dependencies.txt
index e56e92b5..77463237 100644
--- a/hugegraph-dist/scripts/dependency/known-dependencies.txt
+++ b/hugegraph-dist/scripts/dependency/known-dependencies.txt
@@ -89,7 +89,7 @@ hadoop-client-3.1.1.jar
 hadoop-common-3.1.1.jar
 hadoop-common-3.3.1.jar
 hadoop-hdfs-3.1.1.jar
-hadoop-hdfs-client-2.10.1.jar
+hadoop-hdfs-client-3.3.1.jar
 hadoop-hdfs-client-3.1.1.jar
 hadoop-mapreduce-client-common-3.1.1.jar
 hadoop-mapreduce-client-core-3.1.1.jar
diff --git a/hugegraph-loader/pom.xml b/hugegraph-loader/pom.xml
index d71a72cf..078e9008 100644
--- a/hugegraph-loader/pom.xml
+++ b/hugegraph-loader/pom.xml
@@ -40,6 +40,7 @@
         <release.name>${project.artifactId}</release.name>
         <final.name>apache-${release.name}-incubating-${project.version}</final.name>
         <jackson.version>2.12.3</jackson.version>
+        <hadoop.version>3.3.1</hadoop.version>
         <assembly.dir>${project.basedir}/assembly</assembly.dir>
         <assembly.descriptor.dir>${assembly.dir}/descriptor</assembly.descriptor.dir>
         <assembly.static.dir>${assembly.dir}/static</assembly.static.dir>
@@ -307,7 +308,7 @@
         <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-common</artifactId>
-            <version>3.3.1</version>
+            <version>${hadoop.version}</version>
             <exclusions>
                 <exclusion>
                     <groupId>org.slf4j</groupId>
@@ -350,7 +351,7 @@
         <dependency>
             <groupId>org.apache.hadoop</groupId>
             <artifactId>hadoop-hdfs-client</artifactId>
-            <version>2.10.1</version>
+            <version>${hadoop.version}</version>
         </dependency>
         <dependency>
             <groupId>org.apache.hadoop</groupId>