This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new 3764f6e893 add hadoop-shaded-guava in lib/core to allow Parquet
transforms to run correctly, fixes #8036 (#8040)
3764f6e893 is described below
commit 3764f6e8933cc31516ac280ef88197b6454f31d7
Author: Bart Maertens <[email protected]>
AuthorDate: Fri Aug 21 09:39:44 2026 +0200
add hadoop-shaded-guava in lib/core to allow Parquet transforms to run
correctly, fixes #8036 (#8040)
---
plugins/tech/parquet/pom.xml | 16 ++++++++--------
pom.xml | 1 +
2 files changed, 9 insertions(+), 8 deletions(-)
diff --git a/plugins/tech/parquet/pom.xml b/plugins/tech/parquet/pom.xml
index bf05165ef6..351abf5a2a 100644
--- a/plugins/tech/parquet/pom.xml
+++ b/plugins/tech/parquet/pom.xml
@@ -106,18 +106,18 @@
</exclusion>
</exclusions>
</dependency>
- <dependency>
- <groupId>org.codehaus.woodstox</groupId>
- <artifactId>stax2-api</artifactId>
- <scope>provided</scope>
- </dependency>
<!-- The hadoop-* dependencies above exclude all transitives; Hadoop's
StringInterner
- needs the shaded Guava at runtime. Provide it test-scoped so the
reader tests run. -->
+ needs the shaded Guava at runtime, so it has to ship in lib/core.
-->
<dependency>
<groupId>org.apache.hadoop.thirdparty</groupId>
<artifactId>hadoop-shaded-guava</artifactId>
- <version>1.3.0</version>
- <scope>test</scope>
+ <version>${hadoop.thirdparty.version}</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.woodstox</groupId>
+ <artifactId>stax2-api</artifactId>
+ <scope>provided</scope>
</dependency>
</dependencies>
</project>
diff --git a/pom.xml b/pom.xml
index 8df7abb8bf..6981493b32 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,6 +107,7 @@
<commonmark.version>0.30.0</commonmark.version>
<cyclonedx-maven-plugin.version>2.9.3</cyclonedx-maven-plugin.version>
<grpc.version>1.83.1</grpc.version>
+ <hadoop.thirdparty.version>1.4.0</hadoop.thirdparty.version>
<hadoop.version>3.4.2</hadoop.version>
<jacoco-maven-plugin.version>0.8.15</jacoco-maven-plugin.version>
<jandex.version>3.6.0</jandex.version>