This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/main by this push:
new 56a2e94af ORC-1178: Use Hadoop 3.3.3 on Java 17+ (#1129)
56a2e94af is described below
commit 56a2e94af1c4ba340e515e4924c3ef58e7d20edb
Author: William Hyun <[email protected]>
AuthorDate: Thu May 19 18:30:32 2022 -0700
ORC-1178: Use Hadoop 3.3.3 on Java 17+ (#1129)
### What changes were proposed in this pull request?
This PR aims to use Hadoop 3.3.3 on Java 17 and above.
### Why are the changes needed?
To bring the latest bug fixes.
### How was this patch tested?
Pass the Java 17 CI.
---
java/pom.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/java/pom.xml b/java/pom.xml
index 191b36a6d..dd7e731f4 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -471,9 +471,9 @@
<jdk>[17,)</jdk>
</activation>
<properties>
- <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>
+ <min.hadoop.version>3.3.3</min.hadoop.version>
+ <hadoop.version>3.3.3</hadoop.version>
+ <tools.hadoop.version>3.3.3</tools.hadoop.version>
</properties>
</profile>
</profiles>