This is an automated email from the ASF dual-hosted git repository.
chenliang613 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/carbondata.git
The following commit(s) were added to refs/heads/master by this push:
new c780221f63 [ISSUE-4299] Fixed compile issue with spark 2.3
new 92f4dff0af Merge pull request #4301 from xubo245/issue-4299
c780221f63 is described below
commit c780221f633c2e9d54a47ddc4cf4ad73e57f4398
Author: xubo245 <[email protected]>
AuthorDate: Sun Apr 9 00:53:52 2023 +0800
[ISSUE-4299] Fixed compile issue with spark 2.3
---
integration/hive/pom.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/integration/hive/pom.xml b/integration/hive/pom.xml
index 7e5926d42e..b4d0d66639 100644
--- a/integration/hive/pom.xml
+++ b/integration/hive/pom.xml
@@ -69,6 +69,11 @@
<artifactId>hive-contrib</artifactId>
<version>${hive.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.el</artifactId>
+ <version>3.0.1-b07</version>
+ </dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-service</artifactId>
@@ -82,12 +87,22 @@
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
</exclusion>
+ <exclusion>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.el</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hive</groupId>
<artifactId>hive-jdbc</artifactId>
<version>${hive.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.glassfish</groupId>
+ <artifactId>javax.el</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.apache.tez</groupId>