Skip to content

Commit 0e8cead

Browse files
vrozovyaooqinn
authored andcommitted
[SPARK-51699][BUILD] Upgrade to Apache parent pom 34
### What changes were proposed in this pull request? Upgrade Apache parent pom from version 33 to the latest version 34 along with upgrading few maven plugins versions to match those from the latest parent pom. - maven-compiler-plugin from 3.13.0 to 3.14.0 - maven-clean-plugin from 3.4.0 to 3.4.1 - maven-install-plugin from 3.1.2 to 3.1.4 - maven-deploy-plugin from 3.1.2 to 3.1.4 ### Why are the changes needed? Apache parent pom version 34 includes several plugin upgrades as well as bug fixes. For the full list please see [release notes](https://github.com/apache/maven-apache-parent/releases/tag/apache-34) ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? Local mvn build with the new parent pom succeeds: ``` [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 15:08 min [INFO] Finished at: 2025-04-02T09:07:47-07:00 [INFO] ------------------------------------------------------------------------ ``` ### Was this patch authored or co-authored using generative AI tooling? No Closes #50500 from vrozov/SPARK-51699. Authored-by: Vlad Rozov <vrozov@amazon.com> Signed-off-by: Kent Yao <yao@apache.org>
1 parent d2a864f commit 0e8cead

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache</groupId>
2424
<artifactId>apache</artifactId>
25-
<version>33</version>
25+
<version>34</version>
2626
</parent>
2727
<groupId>org.apache.spark</groupId>
2828
<artifactId>spark-parent_2.13</artifactId>
@@ -2782,7 +2782,7 @@
27822782
<plugin>
27832783
<groupId>org.apache.maven.plugins</groupId>
27842784
<artifactId>maven-compiler-plugin</artifactId>
2785-
<version>3.13.0</version>
2785+
<version>3.14.0</version>
27862786
<configuration>
27872787
<skipMain>true</skipMain> <!-- skip compile -->
27882788
<skip>true</skip> <!-- skip testCompile -->
@@ -2935,7 +2935,7 @@
29352935
<plugin>
29362936
<groupId>org.apache.maven.plugins</groupId>
29372937
<artifactId>maven-clean-plugin</artifactId>
2938-
<version>3.4.0</version>
2938+
<version>3.4.1</version>
29392939
<configuration>
29402940
<filesets>
29412941
<fileset>
@@ -3035,12 +3035,12 @@
30353035
<plugin>
30363036
<groupId>org.apache.maven.plugins</groupId>
30373037
<artifactId>maven-install-plugin</artifactId>
3038-
<version>3.1.2</version>
3038+
<version>3.1.4</version>
30393039
</plugin>
30403040
<plugin>
30413041
<groupId>org.apache.maven.plugins</groupId>
30423042
<artifactId>maven-deploy-plugin</artifactId>
3043-
<version>3.1.2</version>
3043+
<version>3.1.4</version>
30443044
<configuration>
30453045
<retryFailedDeploymentCount>3</retryFailedDeploymentCount>
30463046
</configuration>

0 commit comments

Comments
 (0)