This is an automated email from the ASF dual-hosted git repository. abstractdog pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tez.git
The following commit(s) were added to refs/heads/master by this push: new 8fa0c37ad TEZ-4635: The bcprov JAR is no longer included in tez.tar.gz from Hadoop 3.4.1 (#419) 8fa0c37ad is described below commit 8fa0c37ad49237301e4ed2838b361207f11bcc74 Author: Bodor Laszlo <bodorlaszlo0...@gmail.com> AuthorDate: Thu Jul 3 16:42:34 2025 +0200 TEZ-4635: The bcprov JAR is no longer included in tez.tar.gz from Hadoop 3.4.1 (#419) --- pom.xml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 8dfdec9ec..e61084afc 100644 --- a/pom.xml +++ b/pom.xml @@ -58,7 +58,7 @@ <!--dependency versions in alphabetical order--> <asynchttpclient.version>2.12.4</asynchttpclient.version> - <bouncycastle.version>1.78</bouncycastle.version> + <bouncycastle.version>1.78.1</bouncycastle.version> <build-helper-maven-plugin.version>1.8</build-helper-maven-plugin.version> <buildnumber-maven-plugin.version>1.1</buildnumber-maven-plugin.version> <checkstyle.version>8.35</checkstyle.version> @@ -787,17 +787,16 @@ <artifactId>jersey-json</artifactId> <version>${jersey.version}</version> </dependency> + <!-- BouncyCastle should be in default scope to make their way to tez.tar.gz since Hadoop 3.4.1 --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>${bouncycastle.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>${bouncycastle.version}</version> - <scope>test</scope> </dependency> <dependency> <groupId>org.fusesource.leveldbjni</groupId>