Skip to content

Commit fd7c412

Browse files
authored
NIFI-15229 Excluded netty-codec-http3 from Azure Bundle dependencies (#10542)
Signed-off-by: David Handermann <[email protected]>
1 parent 8c876da commit fd7c412

File tree

2 files changed

+21
-0
lines changed
  • nifi-code-coverage
  • nifi-extension-bundles/nifi-azure-bundle

2 files changed

+21
-0
lines changed

nifi-code-coverage/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,16 @@
8989
<groupId>io.projectreactor.netty</groupId>
9090
<artifactId>reactor-netty-http</artifactId>
9191
<version>1.3.0</version>
92+
<exclusions>
93+
<exclusion>
94+
<groupId>io.netty</groupId>
95+
<artifactId>netty-codec-http3</artifactId>
96+
</exclusion>
97+
<exclusion>
98+
<groupId>io.netty</groupId>
99+
<artifactId>netty-codec-classes-quic</artifactId>
100+
</exclusion>
101+
</exclusions>
92102
</dependency>
93103
<!-- SSHD from Registry and other modules -->
94104
<dependency>

nifi-extension-bundles/nifi-azure-bundle/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,17 @@
7979
<groupId>io.projectreactor.netty</groupId>
8080
<artifactId>reactor-netty-http</artifactId>
8181
<version>1.3.0</version>
82+
<exclusions>
83+
<!-- Prevent Reactor Netty 1.3 from loading HTTP/3 QUIC classes -->
84+
<exclusion>
85+
<groupId>io.netty</groupId>
86+
<artifactId>netty-codec-http3</artifactId>
87+
</exclusion>
88+
<exclusion>
89+
<groupId>io.netty</groupId>
90+
<artifactId>netty-codec-classes-quic</artifactId>
91+
</exclusion>
92+
</exclusions>
8293
</dependency>
8394
</dependencies>
8495
</dependencyManagement>

0 commit comments

Comments
 (0)