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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9861bebca [KYUUBI #5739][Bug] Fix spark extension pom import issue
9861bebca is described below

commit 9861bebca13ac53e0785a15b7181368801584a4e
Author: Angerszhuuuu <[email protected]>
AuthorDate: Tue Nov 21 16:17:16 2023 +0800

    [KYUUBI #5739][Bug] Fix spark extension pom import issue
    
    # :mag: Description
    ## Issue References ๐Ÿ”—
    To close #5739
    
    This pull request fixes #
    
    ## Describe Your Solution ๐Ÿ”ง
    Fix a spark extension import issue
    
    ## Types of changes :bookmark:
    
    - [x] 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 ๐Ÿงช
    
    #### Behavior Without This Pull Request :coffin:
    
    #### Behavior With This Pull Request :tada:
    
    #### Related Unit Tests
    
    ---
    
    # Checklists
    ## ๐Ÿ“ Author Self Checklist
    
    - [ ] My code follows the [style 
guidelines](https://kyuubi.readthedocs.io/en/master/contributing/code/style.html)
 of this project
    - [ ] I have performed a self-review
    - [ ] I have commented my code, particularly in hard-to-understand areas
    - [ ] I have made corresponding changes to the documentation
    - [ ] My changes generate no new warnings
    - [ ] I have added tests that prove my fix is effective or that my feature 
works
    - [ ] New and existing unit tests pass locally with my changes
    - [ ] This patch was not authored or co-authored using [Generative 
Tooling](https://www.apache.org/legal/generative-tooling.html)
    
    ## ๐Ÿ“ Committer Pre-Merge Checklist
    
    - [x] Pull request title is okay.
    - [x] No license issues.
    - [x] Milestone correctly set?
    - [x] Test coverage is ok
    - [x] Assignees are selected.
    - [x] Minimum number of approvals
    - [x] No changes are requested
    
    **Be nice. Be informative.**
    
    Closes #5740 from AngersZhuuuu/KYUUBI-5739.
    
    Closes #5739
    
    cdb824c70 [Angerszhuuuu] [KYUUBI #5739][Bug] Fix spark extension pom import 
issue
    
    Authored-by: Angerszhuuuu <[email protected]>
    Signed-off-by: Cheng Pan <[email protected]>
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index ace19c289..54807ca4d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2264,6 +2264,7 @@
         <profile>
             <id>spark-3.4</id>
             <modules>
+                <module>extensions/spark/kyuubi-extension-spark-common</module>
                 <module>extensions/spark/kyuubi-extension-spark-3-4</module>
                 <module>extensions/spark/kyuubi-spark-connector-hive</module>
             </modules>
@@ -2279,6 +2280,7 @@
         <profile>
             <id>spark-3.5</id>
             <modules>
+                <module>extensions/spark/kyuubi-extension-spark-common</module>
                 <module>extensions/spark/kyuubi-extension-spark-3-5</module>
             </modules>
             <properties>

Reply via email to