This is an automated email from the ASF dual-hosted git repository.

chengpan pushed a commit to branch branch-1.9
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


The following commit(s) were added to refs/heads/branch-1.9 by this push:
     new 0f9f6cb56 [KYUUBI #6267] Remove unused dependency management in POM
0f9f6cb56 is described below

commit 0f9f6cb56f9108ad04d6b043241296538e0ae650
Author: Cheng Pan <[email protected]>
AuthorDate: Sun Apr 7 23:53:46 2024 +0800

    [KYUUBI #6267] Remove unused dependency management in POM
    
    # :mag: Description
    
    This pull request removes unused dependency management in POM
    
    ## Types of changes :bookmark:
    
    - [ ] Bugfix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing 
functionality to change)
    
    ## Test Plan ๐Ÿงช
    
    Pass GA.
    
    ---
    
    # Checklist ๐Ÿ“
    
    - [x] This patch was not authored or co-authored using [Generative 
Tooling](https://www.apache.org/legal/generative-tooling.html)
    
    **Be nice. Be informative.**
    
    Closes #6267 from pan3793/clean-pom.
    
    Closes #6267
    
    d19f719bf [Cheng Pan] Remove usued dependency management in POM
    
    Authored-by: Cheng Pan <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
    (cherry picked from commit b4f35d2c44a841d8462ff4063037e7707e855de3)
    Signed-off-by: Cheng Pan <[email protected]>
---
 extensions/spark/kyuubi-spark-authz/pom.xml |  2 +-
 pom.xml                                     | 11 +----------
 2 files changed, 2 insertions(+), 11 deletions(-)

diff --git a/extensions/spark/kyuubi-spark-authz/pom.xml 
b/extensions/spark/kyuubi-spark-authz/pom.xml
index bea2be7be..9c12c76f0 100644
--- a/extensions/spark/kyuubi-spark-authz/pom.xml
+++ b/extensions/spark/kyuubi-spark-authz/pom.xml
@@ -351,7 +351,7 @@
 
         <dependency>
             <groupId>org.apache.paimon</groupId>
-            
<artifactId>paimon-spark-${paimon.spark.binary.version}</artifactId>
+            <artifactId>paimon-spark-${spark.binary.version}</artifactId>
             <scope>test</scope>
         </dependency>
 
diff --git a/pom.xml b/pom.xml
index 86429e6d5..213e786f2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -179,13 +179,10 @@
         <openai.java.version>0.12.0</openai.java.version>
         <retrofit.version>2.9.0</retrofit.version>
         <paimon.version>0.7.0-incubating</paimon.version>
-        
<paimon.spark.binary.version>${spark.binary.version}</paimon.spark.binary.version>
-        <parquet.version>1.10.1</parquet.version>
         <phoenix.version>6.0.0</phoenix.version>
         <postgresql.version>42.7.2</postgresql.version>
         <prometheus.version>0.16.0</prometheus.version>
         <protobuf.version>3.21.7</protobuf.version>
-        <py4j.version>0.10.7</py4j.version>
         <scalatest.version>3.2.16</scalatest.version>
         <scalatestplus.version>3.2.16.0</scalatestplus.version>
         <scopt.version>4.1.0</scopt.version>
@@ -1404,12 +1401,6 @@
                 <version>${sqlite.version}</version>
             </dependency>
 
-            <dependency>
-                <groupId>net.sf.py4j</groupId>
-                <artifactId>py4j</artifactId>
-                <version>${py4j.version}</version>
-            </dependency>
-
             <dependency>
                 <groupId>com.theokanning.openai-gpt3-java</groupId>
                 <artifactId>service</artifactId>
@@ -1430,7 +1421,7 @@
 
             <dependency>
                 <groupId>org.apache.paimon</groupId>
-                
<artifactId>paimon-spark-${paimon.spark.binary.version}</artifactId>
+                <artifactId>paimon-spark-${spark.binary.version}</artifactId>
                 <version>${paimon.version}</version>
             </dependency>
         </dependencies>

Reply via email to