-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-19790. Set Minimum Required Maven Version to 3.9.11 #8214
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
951ac4b
Updating Min Req Maven Version
anujmodi2021 d0865fb
Min Req Maven 3.9.9
anujmodi2021 5c0f23d
Updating Building.txt
anujmodi2021 6283543
Updating Version to 3.9.11
anujmodi2021 b6da2e3
Removing Not necessary code
anujmodi2021 67a35a8
Merge branch 'trunk' into HADOOP-19790
anujmodi2021 53e42b4
mvnw incormporate
anujmodi2021 675da5e
Merge branch 'trunk' into HADOOP-19790
anujmodi2021 3537761
Merge branch 'trunk' into HADOOP-19790
anujmodi2021 bf4311a
Merge branch 'trunk' into HADOOP-19790
anujmodi2021 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,7 +5,7 @@ Requirements: | |
|
|
||
| * Unix System | ||
| * JDK 17 | ||
| * Maven 3.3 or later | ||
| * Maven 3.9.11 or later | ||
| * Boost 1.86.0 (if compiling native code) | ||
| * Protocol Buffers 3.25.5 (if compiling native code) | ||
| * CMake 3.19 or newer (if compiling native code) | ||
|
|
@@ -63,7 +63,11 @@ Refer to dev-support/docker/Dockerfile): | |
| $ sudo apt-get update | ||
| $ sudo apt-get -y install openjdk-17-jdk | ||
| * Maven | ||
| $ sudo apt-get -y install maven | ||
| Most package managers do not install required version of Maven i.e. 3.9.11 or later. | ||
| Following commands download and install Maven manually | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Taken this suggestion |
||
| $ curl -L https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.tar.gz > apache-maven-3.9.11-bin.tar.gz | ||
| $ tar -zxvf apache-maven-3.9.11-bin.tar.gz -C /opt | ||
|
steveloughran marked this conversation as resolved.
|
||
| $ sudo ln -s /opt/apache-maven-3.9.11/bin/mvn /usr/bin | ||
| * Native libraries | ||
| $ sudo apt-get -y install build-essential autoconf automake libtool cmake zlib1g-dev pkg-config libssl-dev libsasl2-dev | ||
| * GCC 9.3.0 | ||
|
|
@@ -583,7 +587,7 @@ Requirements: | |
|
|
||
| * Windows 10 | ||
| * JDK 17 | ||
| * Maven 3.3 or later (maven.apache.org) | ||
| * Maven 3.9.11 or later (maven.apache.org) | ||
| * Boost 1.86.0 (boost.org) | ||
| * Protocol Buffers 3.25.5 (https://github.com/protocolbuffers/protobuf/tags) | ||
| * CMake 3.19 or newer (cmake.org) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace with
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it