Skip to content

Commit e70c91f

Browse files
authored
[GLUTEN-11658][VL] Add missing direct dependency for each module (#11681)
1 parent 01cfd98 commit e70c91f

File tree

5 files changed

+32
-0
lines changed

5 files changed

+32
-0
lines changed

gluten-arrow/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@
242242
<version>3.1.0.0-RC2</version>
243243
<scope>test</scope>
244244
</dependency>
245+
<dependency>
246+
<groupId>com.univocity</groupId>
247+
<artifactId>univocity-parsers</artifactId>
248+
<version>2.9.1</version>
249+
<scope>provided</scope>
250+
</dependency>
245251
</dependencies>
246252

247253
<build>

gluten-delta/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@
5050
<artifactId>spark-sql_${scala.binary.version}</artifactId>
5151
<scope>provided</scope>
5252
</dependency>
53+
<dependency>
54+
<groupId>org.apache.spark</groupId>
55+
<artifactId>spark-catalyst_${scala.binary.version}</artifactId>
56+
<scope>provided</scope>
57+
</dependency>
5358
<dependency>
5459
<groupId>org.apache.spark</groupId>
5560
<artifactId>spark-network-shuffle_${scala.binary.version}</artifactId>

gluten-hudi/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@
4646
<artifactId>spark-core_${scala.binary.version}</artifactId>
4747
<scope>provided</scope>
4848
</dependency>
49+
<dependency>
50+
<groupId>org.apache.spark</groupId>
51+
<artifactId>spark-catalyst_${scala.binary.version}</artifactId>
52+
<scope>provided</scope>
53+
</dependency>
4954
<dependency>
5055
<groupId>org.apache.spark</groupId>
5156
<artifactId>spark-sql_${scala.binary.version}</artifactId>

gluten-iceberg/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040
<artifactId>spark-core_${scala.binary.version}</artifactId>
4141
<scope>provided</scope>
4242
</dependency>
43+
<dependency>
44+
<groupId>org.apache.spark</groupId>
45+
<artifactId>spark-catalyst_${scala.binary.version}</artifactId>
46+
<scope>provided</scope>
47+
</dependency>
4348
<dependency>
4449
<groupId>org.apache.spark</groupId>
4550
<artifactId>spark-sql_${scala.binary.version}</artifactId>

shims/common/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,17 @@
3737
<artifactId>spark-hive_${scala.binary.version}</artifactId>
3838
<scope>provided</scope>
3939
</dependency>
40+
<dependency>
41+
<groupId>org.apache.spark</groupId>
42+
<artifactId>spark-catalyst_${scala.binary.version}</artifactId>
43+
<scope>provided</scope>
44+
</dependency>
45+
<dependency>
46+
<groupId>org.apache.parquet</groupId>
47+
<artifactId>parquet-hadoop</artifactId>
48+
<version>1.15.2</version>
49+
<scope>provided</scope>
50+
</dependency>
4051
</dependencies>
4152

4253
<build>

0 commit comments

Comments
 (0)