This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 93af6b0 ORC-1019: Remove redundant Jackson dependencies in bench
module (#930)
93af6b0 is described below
commit 93af6b076c210b0c3b77e5af3d6fbef1bd1150a1
Author: Guiyanakaung <[email protected]>
AuthorDate: Thu Oct 7 02:44:59 2021 +0800
ORC-1019: Remove redundant Jackson dependencies in bench module (#930)
### What changes were proposed in this pull request?
This PR aims to remove redundant jackson dependencies.
Unfortunately, ORC-946 forgot to remove the bench dependency on jackson. In
fact, the bench module does not directly depend on jackson, only spark
indirectly depends on the specified version of jackson.
### Why are the changes needed?
Minimising dependencies.
### How was this patch tested?
Pass the CIs.
Closes #928
---
java/bench/pom.xml | 16 ----------------
1 file changed, 16 deletions(-)
diff --git a/java/bench/pom.xml b/java/bench/pom.xml
index 5414236..c029326 100644
--- a/java/bench/pom.xml
+++ b/java/bench/pom.xml
@@ -37,7 +37,6 @@
<orc.version>${project.version}</orc.version>
<parquet.version>1.12.0</parquet.version>
<spark.version>3.1.2</spark.version>
- <jackson.version>2.12.5</jackson.version>
<hadoop.version>3.3.1</hadoop.version>
<junit.version>5.8.0</junit.version>
</properties>
@@ -69,21 +68,6 @@
<scope>test</scope>
</dependency>
<dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-annotations</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>1.0</version>