Skip to content

Commit

Permalink
ORC-1019: Remove redundant Jackson dependencies in bench module (#930)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
guiyanakuang authored Oct 6, 2021
1 parent 9dcd645 commit 93af6b0
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions java/bench/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -68,21 +67,6 @@
<version>${junit.version}</version>
<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>
Expand Down

0 comments on commit 93af6b0

Please sign in to comment.