You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hugegraph.apache.org by ji...@apache.org on 2022/11/21 08:35:42 UTC

[incubator-hugegraph-toolchain] branch fix-jackson created (now 27a63972)

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

jin pushed a change to branch fix-jackson
in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph-toolchain.git


      at 27a63972 chore: fix loader's jackson conflicts & missing dependencies

This branch includes the following new commits:

     new 27a63972 chore: fix loader's jackson conflicts & missing dependencies

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-hugegraph-toolchain] 01/01: chore: fix loader's jackson conflicts & missing dependencies

Posted by ji...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 27a6397211ab1b22ea8e7f9f2e2e56cd8c9f1636
Author: imbajin <ji...@apache.org>
AuthorDate: Mon Nov 21 16:32:41 2022 +0800

    chore: fix loader's jackson conflicts & missing dependencies
---
 hugegraph-loader/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/hugegraph-loader/pom.xml b/hugegraph-loader/pom.xml
index 88477e97..0044362c 100644
--- a/hugegraph-loader/pom.xml
+++ b/hugegraph-loader/pom.xml
@@ -37,12 +37,20 @@
     <properties>
         <release.name>${project.artifactId}</release.name>
         <final.name>${release.name}-${project.version}</final.name>
+        <jackson.version>2.12.3</jackson.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>
     </properties>
 
     <dependencies>
+        <!-- use a fixed jackson for loader -->
+        <dependency>
+          <groupId>com.fasterxml.jackson.module</groupId>
+          <artifactId>jackson-module-jaxb-annotations</artifactId>
+          <version>${jackson.version}</version>
+        </dependency>
+
         <dependency>
             <groupId>org.apache.spark</groupId>
             <artifactId>spark-core_${scala.version}</artifactId>