This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/storm.git
commit 6c49ccfc069d2375fa6adc91df6de8ba4d17df84 Author: purshotam shah <[email protected]> AuthorDate: Tue Aug 27 16:24:28 2024 -0700 STORM-4070 mTls support - fix LICENSE-binary --- LICENSE-binary | 6 +++--- external/storm-autocreds/pom.xml | 4 ++++ external/storm-hive/pom.xml | 4 ++++ pom.xml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/LICENSE-binary b/LICENSE-binary index 046b62db3..931d84cbd 100644 --- a/LICENSE-binary +++ b/LICENSE-binary @@ -1017,9 +1017,9 @@ The license texts of these dependencies can be found in the licenses directory. Bouncy Castle Licence - * Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk15on:1.70 - https://www.bouncycastle.org/java.html) - * Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk15on:1.70 - http://www.bouncycastle.org/java.html) - * Bouncy Castle Provider (org.bouncycastle:bcprov-jdk15on:1.70 - http://www.bouncycastle.org/java.html) + * Bouncy Castle ASN.1 Extension and Utility APIs (org.bouncycastle:bcutil-jdk15on:1.78.1 - https://www.bouncycastle.org/java.html) + * Bouncy Castle PKIX, CMS, EAC, TSP, PKCS, OCSP, CMP, and CRMF APIs (org.bouncycastle:bcpkix-jdk15on:1.78.1 - http://www.bouncycastle.org/java.html) + * Bouncy Castle Provider (org.bouncycastle:bcprov-jdk15on:1.78.1 - http://www.bouncycastle.org/java.html) BSD 2-Clause license diff --git a/external/storm-autocreds/pom.xml b/external/storm-autocreds/pom.xml index ef6a5fda6..ac2e75a74 100644 --- a/external/storm-autocreds/pom.xml +++ b/external/storm-autocreds/pom.xml @@ -133,6 +133,10 @@ <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + </exclusion> </exclusions> </dependency> <dependency> diff --git a/external/storm-hive/pom.xml b/external/storm-hive/pom.xml index 1e51c2872..1181b0e91 100644 --- a/external/storm-hive/pom.xml +++ b/external/storm-hive/pom.xml @@ -112,6 +112,10 @@ <groupId>org.eclipse.jetty</groupId> <artifactId>*</artifactId> </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + </exclusion> </exclusions> </dependency> <dependency> diff --git a/pom.xml b/pom.xml index 29fd8b9f9..4efa8ec6e 100644 --- a/pom.xml +++ b/pom.xml @@ -104,7 +104,7 @@ <jgrapht.version>0.9.0</jgrapht.version> <guava.version>33.0.0-jre</guava.version> <auto-service.version>1.0-rc4</auto-service.version> - <netty-tcnative.version>2.0.61.Final</netty-tcnative.version> + <netty-tcnative.version>2.0.65.Final</netty-tcnative.version> <netty.version>4.1.112.Final</netty.version> <sysout-over-slf4j.version>1.0.2</sysout-over-slf4j.version> <log4j.version>2.23.0</log4j.version>
