This is an automated email from the ASF dual-hosted git repository.
exceptionfactory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new fd7c412267 NIFI-15229 Excluded netty-codec-http3 from Azure Bundle
dependencies (#10542)
fd7c412267 is described below
commit fd7c4122678cf8c71700ae9c27282f301740f8fa
Author: Pierre Villard <[email protected]>
AuthorDate: Tue Nov 18 18:36:22 2025 +0100
NIFI-15229 Excluded netty-codec-http3 from Azure Bundle dependencies
(#10542)
Signed-off-by: David Handermann <[email protected]>
---
nifi-code-coverage/pom.xml | 10 ++++++++++
nifi-extension-bundles/nifi-azure-bundle/pom.xml | 11 +++++++++++
2 files changed, 21 insertions(+)
diff --git a/nifi-code-coverage/pom.xml b/nifi-code-coverage/pom.xml
index 01eb29656b..c7eb153d3c 100644
--- a/nifi-code-coverage/pom.xml
+++ b/nifi-code-coverage/pom.xml
@@ -89,6 +89,16 @@
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty-http</artifactId>
<version>1.3.0</version>
+ <exclusions>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http3</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-classes-quic</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- SSHD from Registry and other modules -->
<dependency>
diff --git a/nifi-extension-bundles/nifi-azure-bundle/pom.xml
b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
index 58d1a75ee3..ec7fdcd5d4 100644
--- a/nifi-extension-bundles/nifi-azure-bundle/pom.xml
+++ b/nifi-extension-bundles/nifi-azure-bundle/pom.xml
@@ -79,6 +79,17 @@
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty-http</artifactId>
<version>1.3.0</version>
+ <exclusions>
+ <!-- Prevent Reactor Netty 1.3 from loading HTTP/3 QUIC
classes -->
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-http3</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>io.netty</groupId>
+ <artifactId>netty-codec-classes-quic</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
</dependencyManagement>