You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2023/02/09 02:46:39 UTC

[spark] branch master updated: [SPARK-42355][BUILD] Upgrade some maven-plugins

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 89b16f23f8b [SPARK-42355][BUILD] Upgrade some maven-plugins
89b16f23f8b is described below

commit 89b16f23f8b3fa92d1a4cab504b088cab6f41577
Author: yangjie01 <ya...@baidu.com>
AuthorDate: Wed Feb 8 18:46:26 2023 -0800

    [SPARK-42355][BUILD] Upgrade some maven-plugins
    
    ### What changes were proposed in this pull request?
    This pr aims upgrade maven plugins including:
    
    - maven-checkstyle-plugin: from 3.2.0 to 3.2.1
    - maven-clean-plugin: from 3.1.0 to 3.2.0
    - maven-dependency-plugin: from 3.3.0 to 3.5.0
    - maven-source-plugin: from 3.1.0 to 3.2.1
    - maven-surefire-plugin: from 3.0.0-M7 to 3.0.0-M8
    - maven-jar-plugin: from 3.2.2 to 3.3.0
    
    ### Why are the changes needed?
    - maven-checkstyle-plugin
    https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.2.0...maven-checkstyle-plugin-3.2.1
    
    - maven-clean-plugin
    3.2.0 include a new feature: https://github.com/apache/maven-clean-plugin/pull/6
    https://github.com/apache/maven-clean-plugin/releases/tag/maven-clean-plugin-3.2.0
    
    - maven-dependency-plugin
    https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.3.0...maven-dependency-plugin-3.5.0
    
    - maven-source-plugin
    https://github.com/apache/maven-source-plugin/compare/maven-source-plugin-3.1.0...maven-source-plugin-3.2.1
    
    - maven-surefire-plugin
    https://github.com/apache/maven-surefire/compare/surefire-3.0.0-M7...surefire-3.0.0-M8
    
    - maven-jar-plugin
    https://github.com/apache/maven-jar-plugin/releases/tag/maven-jar-plugin-3.3.0
    
    ### Does this PR introduce _any_ user-facing change?
    No
    
    ### How was this patch tested?
    
    - Pass GitHub Actions
    - Manually check these plugins work normally
    
    Closes #39899 from LuciferYang/SPARK-42355.
    
    Authored-by: yangjie01 <ya...@baidu.com>
    Signed-off-by: Sean Owen <sr...@gmail.com>
---
 pom.xml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 2cd24d441e5..08c6958b4e9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2934,7 +2934,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-surefire-plugin</artifactId>
-          <version>3.0.0-M7</version>
+          <version>3.0.0-M8</version>
           <!-- Note config is repeated in scalatest config -->
           <configuration>
             <includes>
@@ -3041,7 +3041,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-jar-plugin</artifactId>
-          <version>3.2.2</version>
+          <version>3.3.0</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
@@ -3051,7 +3051,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-source-plugin</artifactId>
-          <version>3.1.0</version>
+          <version>3.2.1</version>
           <configuration>
             <attach>true</attach>
           </configuration>
@@ -3068,7 +3068,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-clean-plugin</artifactId>
-          <version>3.1.0</version>
+          <version>3.2.0</version>
           <configuration>
             <filesets>
               <fileset>
@@ -3178,7 +3178,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-dependency-plugin</artifactId>
-          <version>3.3.0</version>
+          <version>3.5.0</version>
           <executions>
             <execution>
               <id>default-cli</id>
@@ -3318,7 +3318,7 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-checkstyle-plugin</artifactId>
-        <version>3.2.0</version>
+        <version>3.2.1</version>
         <configuration>
           <failOnViolation>false</failOnViolation>
           <includeTestSourceDirectory>true</includeTestSourceDirectory>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org