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 50cdedf60b0 [SPARK-40071][BUILD] Update plugins to latest versions
50cdedf60b0 is described below

commit 50cdedf60b0cdcdc7bb226e1c5a0ac1c148ed27d
Author: panbingkun <pbk1...@gmail.com>
AuthorDate: Sat Aug 13 18:38:16 2022 -0500

    [SPARK-40071][BUILD] Update plugins to latest versions
    
    ### What changes were proposed in this pull request?
    This PR updates plugins to latest versions.
    
    ### Why are the changes needed?
    This brings improvment & bug fixes like the following:
    
    - 1.maven-compiler-plugin(from 3.8.1 to 3.10.1)
    
https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.8.1...maven-compiler-plugin-3.10.1
    https://issues.apache.org/jira/browse/MCOMPILER-346
    
    - 2.maven-jar-plugin(from 3.1.2 to 3.2.2)
    
https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.1.2...maven-jar-plugin-3.2.2
    
    - 3.maven-javadoc-plugin(from 3.1.1 to 3.4.0)
    
https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.1.1...maven-javadoc-plugin-3.4.0
    https://issues.apache.org/jira/browse/MJAVADOC-696
    
    - 4.checkstyle(from 8.43 to 9.3)
    https://checkstyle.org/releasenotes.html#Release_8.44
    https://checkstyle.org/releasenotes.html#Release_8.45
    https://checkstyle.org/releasenotes.html#Release_8.45.1
    https://checkstyle.org/releasenotes.html#Release_9.0
    https://checkstyle.org/releasenotes.html#Release_9.0.1
    https://checkstyle.org/releasenotes.html#Release_9.1
    https://checkstyle.org/releasenotes.html#Release_9.2
    https://checkstyle.org/releasenotes.html#Release_9.2.1
    https://checkstyle.org/releasenotes.html#Release_9.3
    why not 10.3.2 : https://checkstyle.org/#JRE_and_JDK
    <img width="1129" alt="image" 
src="https://user-images.githubusercontent.com/15246973/184494469-ab0b6f47-dcb1-46fc-b7d0-7d012d413060.png";>
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    Pass GA and testing with the existing code.
    
    Closes #37506 from panbingkun/upgrade_plugins.
    
    Authored-by: panbingkun <pbk1...@gmail.com>
    Signed-off-by: Sean Owen <sro...@gmail.com>
---
 pom.xml             | 10 +++++-----
 project/plugins.sbt |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pom.xml b/pom.xml
index 78d499e90b5..77d676051d2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2915,7 +2915,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>3.8.1</version>
+          <version>3.10.1</version>
           <configuration>
             <source>${java.version}</source>
             <target>${java.version}</target>
@@ -3038,7 +3038,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-jar-plugin</artifactId>
-          <version>3.1.2</version>
+          <version>3.2.2</version>
         </plugin>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
@@ -3089,7 +3089,7 @@
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-javadoc-plugin</artifactId>
-          <version>3.1.1</version>
+          <version>3.4.0</version>
           <configuration>
             <additionalJOptions>
               <additionalJOption>-Xdoclint:all</additionalJOption>
@@ -3342,7 +3342,7 @@
             -->
             <groupId>com.puppycrawl.tools</groupId>
             <artifactId>checkstyle</artifactId>
-            <version>8.43</version>
+            <version>9.3</version>
           </dependency>
         </dependencies>
         <executions>
@@ -3779,7 +3779,7 @@
                       <pluginExecutionFilter>
                         <groupId>org.apache.maven.plugins</groupId>
                         <artifactId>maven-jar-plugin</artifactId>
-                        <versionRange>3.1.2</versionRange>
+                        <versionRange>3.2.2</versionRange>
                         <goals>
                           <goal>test-jar</goal>
                         </goals>
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 0d19af3ef81..9f55e21dc9d 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -20,7 +20,7 @@ addSbtPlugin("com.etsy" % "sbt-checkstyle-plugin" % "3.1.1")
 // sbt-checkstyle-plugin uses an old version of checkstyle. Match it to 
Maven's.
 // If you are changing the dependency setting for checkstyle plugin,
 // please check pom.xml in the root of the source tree too.
-libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "8.43"
+libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "9.3"
 
 // checkstyle uses guava 23.0.
 libraryDependencies += "com.google.guava" % "guava" % "23.0"


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

Reply via email to