Skip to content

HADOOP-19594. Bump Maven 3.9.10 #7760

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: trunk
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions BUILDING.txt
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,7 @@ Maven build goals:
OWASP's dependency-check plugin will scan the third party dependencies
of this project for known CVEs (security vulnerabilities against them).
It will produce a report in target/dependency-check-report.html. To
invoke, run 'mvn dependency-check:aggregate'. Note that this plugin
requires maven 3.1.1 or greater.
invoke, run 'mvn dependency-check:aggregate'.

PMDK library build options:

Expand Down Expand Up @@ -529,7 +528,7 @@ Requirements:

* Windows 10
* JDK 1.8
* Maven 3.0 or later (maven.apache.org)
* Maven 3.3 or later (maven.apache.org)
* Boost 1.86.0 (boost.org)
* Protocol Buffers 3.21.12 (https://github.com/protocolbuffers/protobuf/tags)
* CMake 3.19 or newer (cmake.org)
Expand Down
12 changes: 6 additions & 6 deletions dev-support/docker/pkg-resolver/install-maven.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ if [ $? -eq 1 ]; then
exit 1
fi

default_version="3.6.3"
default_version="3.9.10"
version_to_install=$default_version
if [ -n "$2" ]; then
version_to_install="$2"
fi

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

if [ "$version_to_install" == "3.6.3" ]; then
if [ "$version_to_install" == "3.9.10" ]; then
mkdir -p /opt/maven /tmp/maven &&
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 \
-o /tmp/maven/apache-maven-3.6.3-bin.tar.gz &&
tar xzf /tmp/maven/apache-maven-3.6.3-bin.tar.gz --strip-components 1 -C /opt/maven
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 \
-o /tmp/maven/apache-maven-3.9.10-bin.tar.gz &&
tar xzf /tmp/maven/apache-maven-3.9.10-bin.tar.gz --strip-components 1 -C /opt/maven
else
echo "ERROR: Don't know how to install version $version_to_install"
exit 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Hadoop Auth, Java HTTP SPNEGO - Building It
Requirements
------------

* Java 7+
* Maven 3+
* JDK 1.8
* Maven 3.3 or later
* Kerberos KDC (for running Kerberos test cases)

Building
Expand Down
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -617,8 +617,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/x
dependencies of this project for known CVEs (security
vulnerabilities against them). It will produce a report
in target/dependency-check-report.html. To invoke, run
'mvn dependency-check:aggregate'. Note that this plugin
requires maven 3.1.1 or greater.
'mvn dependency-check:aggregate'.
-->
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
Expand Down