Skip to content

Commit

Permalink
fix gluten ut for spark 35
Browse files Browse the repository at this point in the history
  • Loading branch information
baibaichen committed Aug 17, 2024
1 parent b0a890f commit 1277700
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gluten-ut/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<artifactId>gluten-ut</artifactId>
<packaging>pom</packaging>
<name>Gluten Unit Test</name>
<name>Gluten Unit Test Parent</name>

<dependencies>
<!-- put gluten-core at first so that overwritten spark classes (such as BatchScanExec,
Expand Down
32 changes: 32 additions & 0 deletions gluten-ut/test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,38 @@
<version>${celeborn.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-memory-core</artifactId>
<version>${arrow.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.arrow</groupId>
<artifactId>arrow-vector</artifactId>
<version>${arrow.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</profile>
<profile>
Expand Down

0 comments on commit 1277700

Please sign in to comment.