Skip to content

Commit

Permalink
fix jackson-core package in flink (#297)
Browse files Browse the repository at this point in the history
Signed-off-by: chenxu <[email protected]>
Co-authored-by: chenxu <[email protected]>
  • Loading branch information
xuchen-plus and dmetasoul01 authored Aug 21, 2023
1 parent cc285cc commit bd4b341
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
8 changes: 8 additions & 0 deletions lakesoul-flink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ SPDX-License-Identifier: Apache-2.0
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -406,6 +410,10 @@ SPDX-License-Identifier: Apache-2.0
<groupId>org.apache.logging.log4j</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down
12 changes: 6 additions & 6 deletions lakesoul-spark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ SPDX-License-Identifier: Apache-2.0
<artifactId>avro</artifactId>
<version>${avro.version}</version>
<scope>${local.scope}</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson.yaml.version}</version>
<scope>${local.scope}</scope>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<!--hive-->
<dependency>
Expand Down
6 changes: 0 additions & 6 deletions native-io/lakesoul-io-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ SPDX-License-Identifier: Apache-2.0
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>${arrow.version}</version>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
Expand Down

0 comments on commit bd4b341

Please sign in to comment.