Skip to content

Commit 1595e46

Browse files
dongjoon-hyunHyukjinKwon
authored andcommitted
[SPARK-30142][TEST-MAVEN][BUILD] Upgrade Maven to 3.6.3
### What changes were proposed in this pull request? This PR aims to upgrade Maven from 3.6.2 to 3.6.3. ### Why are the changes needed? This will bring bug fixes like the following. - MNG-6759 Maven fails to use <repositories> section from dependency when resolving transitive dependencies in some cases - MNG-6760 ExclusionArtifactFilter result invalid when wildcard exclusion is followed by other exclusions The following is the full release note. - https://maven.apache.org/docs/3.6.3/release-notes.html ### Does this PR introduce any user-facing change? No. (This is a dev-environment change.) ### How was this patch tested? Pass the Jenkins with both SBT and Maven. Closes apache#26770 from dongjoon-hyun/SPARK-30142. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: HyukjinKwon <[email protected]>
1 parent 187f3c1 commit 1595e46

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev/appveyor-install-dependencies.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if (!(Test-Path $tools)) {
8181
# ========================== Maven
8282
Push-Location $tools
8383

84-
$mavenVer = "3.6.2"
84+
$mavenVer = "3.6.3"
8585
Start-FileDownload "https://archive.apache.org/dist/maven/maven-3/$mavenVer/binaries/apache-maven-$mavenVer-bin.zip" "maven.zip"
8686

8787
# extract

docs/building-spark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ license: |
2727
## Apache Maven
2828

2929
The Maven-based build is the build of reference for Apache Spark.
30-
Building Spark using Maven requires Maven 3.6.2 and Java 8.
30+
Building Spark using Maven requires Maven 3.6.3 and Java 8.
3131
Spark requires Scala 2.12; support for Scala 2.11 was removed in Spark 3.0.0.
3232

3333
### Setting up Maven's Memory Usage

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
<java.version>1.8</java.version>
119119
<maven.compiler.source>${java.version}</maven.compiler.source>
120120
<maven.compiler.target>${java.version}</maven.compiler.target>
121-
<maven.version>3.6.2</maven.version>
121+
<maven.version>3.6.3</maven.version>
122122
<sbt.project.name>spark</sbt.project.name>
123123
<slf4j.version>1.7.16</slf4j.version>
124124
<log4j.version>1.2.17</log4j.version>

0 commit comments

Comments
 (0)