You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by ch...@apache.org on 2023/02/09 14:43:00 UTC

[kyuubi] branch master updated: [KYUUBI #4292] Pin threeten 1.7.0

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 61df9e2cc [KYUUBI #4292] Pin threeten 1.7.0
61df9e2cc is described below

commit 61df9e2cc402e9bd35b4f300790fda2ac8bdc495
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Thu Feb 9 22:42:50 2023 +0800

    [KYUUBI #4292] Pin threeten 1.7.0
    
    ### _Why are the changes needed?_
    
    Pin `org.threeten:threeten-extra:1.7.0` for spark master as a workaround for https://github.com/ThreeTen/threeten-extra/issues/226
    
    ### _How was this patch tested?_
    - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible
    
    - [ ] Add screenshots for manual tests if appropriate
    
    - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #4292 from pan3793/threeten.
    
    Closes #4292
    
    8c1a24fd5 [Cheng Pan] Pin threeten 1.7.0
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 pom.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/pom.xml b/pom.xml
index b57324989..fc282c43e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2309,8 +2309,19 @@
             <id>spark-master</id>
             <properties>
                 <spark.version>3.4.0-SNAPSHOT</spark.version>
+                <!-- https://github.com/ThreeTen/threeten-extra/issues/226 -->
+                <threeten.version>1.7.0</threeten.version>
                 <maven.plugin.scalatest.exclude.tags>org.scalatest.tags.Slow,org.apache.kyuubi.tags.DeltaTest,org.apache.kyuubi.tags.IcebergTest,org.apache.kyuubi.tags.HudiTest,org.apache.kyuubi.tags.PySparkTest</maven.plugin.scalatest.exclude.tags>
             </properties>
+            <dependencyManagement>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.threeten</groupId>
+                        <artifactId>threeten-extra</artifactId>
+                        <version>${threeten.version}</version>
+                    </dependency>
+                </dependencies>
+            </dependencyManagement>
             <repositories>
                 <repository>
                     <releases>