Skip to content

Commit 660f300

Browse files
committed
HADOOP-19594. Bump Maven 3.9.10
1 parent c199c73 commit 660f300

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

BUILDING.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,7 @@ Maven build goals:
279279
OWASP's dependency-check plugin will scan the third party dependencies
280280
of this project for known CVEs (security vulnerabilities against them).
281281
It will produce a report in target/dependency-check-report.html. To
282-
invoke, run 'mvn dependency-check:aggregate'. Note that this plugin
283-
requires maven 3.1.1 or greater.
282+
invoke, run 'mvn dependency-check:aggregate'.
284283

285284
PMDK library build options:
286285

@@ -529,7 +528,7 @@ Requirements:
529528

530529
* Windows 10
531530
* JDK 1.8
532-
* Maven 3.0 or later (maven.apache.org)
531+
* Maven 3.3 or later (maven.apache.org)
533532
* Boost 1.86.0 (boost.org)
534533
* Protocol Buffers 3.21.12 (https://github.com/protocolbuffers/protobuf/tags)
535534
* CMake 3.19 or newer (cmake.org)

dev-support/docker/pkg-resolver/install-maven.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ if [ $? -eq 1 ]; then
2727
exit 1
2828
fi
2929

30-
default_version="3.6.3"
30+
default_version="3.9.10"
3131
version_to_install=$default_version
3232
if [ -n "$2" ]; then
3333
version_to_install="$2"
3434
fi
3535

36-
if [ "$version_to_install" != "3.6.3" ]; then
36+
if [ "$version_to_install" != "3.9.10" ]; then
3737
echo "WARN: Don't know how to install version $version_to_install, installing the default version $default_version instead"
3838
version_to_install=$default_version
3939
fi
4040

41-
if [ "$version_to_install" == "3.6.3" ]; then
41+
if [ "$version_to_install" == "3.9.10" ]; then
4242
mkdir -p /opt/maven /tmp/maven &&
43-
curl -L -s -S https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.tar.gz \
44-
-o /tmp/maven/apache-maven-3.6.3-bin.tar.gz &&
45-
tar xzf /tmp/maven/apache-maven-3.6.3-bin.tar.gz --strip-components 1 -C /opt/maven
43+
curl -L -s -S https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10/apache-maven-3.9.10-bin.tar.gz \
44+
-o /tmp/maven/apache-maven-3.9.10-bin.tar.gz &&
45+
tar xzf /tmp/maven/apache-maven-3.9.10-bin.tar.gz --strip-components 1 -C /opt/maven
4646
else
4747
echo "ERROR: Don't know how to install version $version_to_install"
4848
exit 1

hadoop-common-project/hadoop-auth/src/site/markdown/BuildingIt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Hadoop Auth, Java HTTP SPNEGO - Building It
1818
Requirements
1919
------------
2020

21-
* Java 7+
22-
* Maven 3+
21+
* JDK 1.8
22+
* Maven 3.3 or later
2323
* Kerberos KDC (for running Kerberos test cases)
2424

2525
Building

pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,8 +617,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
617617
dependencies of this project for known CVEs (security
618618
vulnerabilities against them). It will produce a report
619619
in target/dependency-check-report.html. To invoke, run
620-
'mvn dependency-check:aggregate'. Note that this plugin
621-
requires maven 3.1.1 or greater.
620+
'mvn dependency-check:aggregate'.
622621
-->
623622
<groupId>org.owasp</groupId>
624623
<artifactId>dependency-check-maven</artifactId>

0 commit comments

Comments
 (0)