Skip to content

Commit bc8020f

Browse files
committed
[SPARK-53919][BUILD] Make Maven plugins up-to-date
### What changes were proposed in this pull request? This PR aims to make `Maven` plugins up-to-date as a part of Apache Spark 4.1.0 preparation. ### Why are the changes needed? To bring the latest bug fixes and improvements. - exec-maven-plugin - https://github.com/mojohaus/exec-maven-plugin/releases/tag/3.6.1 - https://github.com/mojohaus/exec-maven-plugin/releases/tag/3.6.0 - mojohaus/exec-maven-plugin#484 - maven-compiler-plugin - https://github.com/apache/maven-compiler-plugin/releases/tag/maven-compiler-plugin-3.14.1 - maven-enforcer-plugin - https://github.com/apache/maven-enforcer/releases/tag/enforcer-3.6.2 - https://github.com/apache/maven-enforcer/releases/tag/enforcer-3.6.1 ### Does this PR introduce _any_ user-facing change? No behavior change. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#52622 from dongjoon-hyun/SPARK-53919. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
1 parent 2ae81cd commit bc8020f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
<java.minimum.version>17.0.11</java.minimum.version>
121121
<maven.compiler.release>${java.version}</maven.compiler.release>
122122
<maven.version>3.9.11</maven.version>
123-
<exec-maven-plugin.version>3.5.1</exec-maven-plugin.version>
123+
<exec-maven-plugin.version>3.6.1</exec-maven-plugin.version>
124124
<sbt.project.name>spark</sbt.project.name>
125125
<asm.version>9.8</asm.version>
126126
<slf4j.version>2.0.17</slf4j.version>
@@ -2619,7 +2619,7 @@
26192619
<plugin>
26202620
<groupId>org.apache.maven.plugins</groupId>
26212621
<artifactId>maven-enforcer-plugin</artifactId>
2622-
<version>3.6.0</version>
2622+
<version>3.6.2</version>
26232623
<executions>
26242624
<execution>
26252625
<id>enforce-versions</id>
@@ -2803,7 +2803,7 @@
28032803
<plugin>
28042804
<groupId>org.apache.maven.plugins</groupId>
28052805
<artifactId>maven-compiler-plugin</artifactId>
2806-
<version>3.14.0</version>
2806+
<version>3.14.1</version>
28072807
<configuration>
28082808
<skipMain>true</skipMain> <!-- skip compile -->
28092809
<skip>true</skip> <!-- skip testCompile -->

0 commit comments

Comments
 (0)