Skip to content

Commit

Permalink
[HUDI-7759] Remove Hadoop dependencies in hudi-common module (#11220)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan Vexler <=>
  • Loading branch information
yihua committed May 15, 2024
1 parent 2fbb1fc commit f8bb642
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
18 changes: 0 additions & 18 deletions hudi-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,24 +189,6 @@
<artifactId>rocksdbjni</artifactId>
</dependency>

<!-- Hadoop -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.hudi</groupId>
<artifactId>hudi-io</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ protected TestLogAppender() {

@Override
public void append(LogEvent event) {
log.add(event);
log.add(event.toImmutable());
}

public List<LogEvent> getLog() {
Expand Down

0 comments on commit f8bb642

Please sign in to comment.