This is an automated email from the ASF dual-hosted git repository. dongjoon pushed a commit to branch branch-1.7 in repository https://gitbox.apache.org/repos/asf/orc.git
commit 0f3f6b3922b564ab8cc4bf69b0d0b8f6d6a77c2c Author: Dongjoon Hyun <[email protected]> AuthorDate: Mon May 9 23:37:38 2022 -0700 ORC-1169: Use Hadoop to 3.3.2 on Java 17+ (#1113) ### What changes were proposed in this pull request? This PR aims to upgrade Hadoop to 3.3.2 on `java17` profile in Apache ORC 1.8.0. ### Why are the changes needed? [Apache Hadoop 3.3.2 is the latest version](https://hadoop.apache.org/docs/r3.3.2/index.html) with the following. - This is the first release to support ARM architectures. - Upgrade protobuf from 2.5.0 to something newer - Java 11 runtime support is completed. - Shaded Guava from thirdparty ### How was this patch tested? Pass the Java 17+ CIs. (cherry picked from commit 9e567040c90bb0d4a094159f9b33f2ae3dbe8a94) Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit a59f3279a3474890b44c123953d624cc44d47485) Signed-off-by: Dongjoon Hyun <[email protected]> --- java/pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java/pom.xml b/java/pom.xml index f35c8f40f..d175e4810 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -568,9 +568,9 @@ <jdk>[17,)</jdk> </activation> <properties> - <min.hadoop.version>3.3.1</min.hadoop.version> - <hadoop.version>3.3.1</hadoop.version> - <tools.hadoop.version>3.3.1</tools.hadoop.version> + <min.hadoop.version>3.3.2</min.hadoop.version> + <hadoop.version>3.3.2</hadoop.version> + <tools.hadoop.version>3.3.2</tools.hadoop.version> </properties> </profile> </profiles>
