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 2022/06/16 17:01:29 UTC

[incubator-kyuubi] branch master updated: [KYUUBI #2898] Bump maven-surefire-plugin 3.0.0-M7

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/incubator-kyuubi.git


The following commit(s) were added to refs/heads/master by this push:
     new 7f0c53a0b [KYUUBI #2898] Bump maven-surefire-plugin 3.0.0-M7
7f0c53a0b is described below

commit 7f0c53a0ba45f964e177a32fdc14c0d57dbc0353
Author: Cheng Pan <ch...@apache.org>
AuthorDate: Fri Jun 17 01:01:20 2022 +0800

    [KYUUBI #2898] Bump maven-surefire-plugin 3.0.0-M7
    
    ### _Why are the changes needed?_
    
    For better interaction with JUnit 5 dependencies
    
    ### _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.apache.org/docs/latest/develop_tools/testing.html#running-tests) locally before make a pull request
    
    Closes #2898 from pan3793/surefire.
    
    Closes #2898
    
    485e792c [Cheng Pan] Disable failIfNoSpecifiedTests
    7b4c3219 [Cheng Pan] Bump maven-surefire-plugin 3.0.0-M7
    
    Authored-by: Cheng Pan <ch...@apache.org>
    Signed-off-by: Cheng Pan <ch...@apache.org>
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index fe008990b..60159636e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -195,7 +195,7 @@
         <maven.plugin.gpg.version>3.0.1</maven.plugin.gpg.version>
         <maven.plugin.javadoc.version>3.3.0</maven.plugin.javadoc.version>
         <maven.plugin.scala.version>4.6.1</maven.plugin.scala.version>
-        <maven.plugin.surefire.version>2.22.0</maven.plugin.surefire.version>
+        <maven.plugin.surefire.version>3.0.0-M7</maven.plugin.surefire.version>
         <maven.plugin.scalatest.version>2.0.2</maven.plugin.scalatest.version>
         <maven.plugin.scalatest.exclude.tags>org.scalatest.tags.Slow,org.apache.kyuubi.tags.HudiTest</maven.plugin.scalatest.exclude.tags>
         <maven.plugin.scalatest.include.tags></maven.plugin.scalatest.include.tags>
@@ -1586,7 +1586,7 @@
                     <version>${maven.plugin.surefire.version}</version>
                     <configuration>
                         <skipTests>true</skipTests>
-                        <failIfNoTests>false</failIfNoTests>
+                        <failIfNoSpecifiedTests>false</failIfNoSpecifiedTests>
                     </configuration>
                 </plugin>
                 <!-- enable scalatest -->