This is an automated email from the ASF dual-hosted git repository.

pvillard 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 ee86ac18b3 NIFI-15283 Added Netty HTTP libraries to Shared NAR
ee86ac18b3 is described below

commit ee86ac18b358aa2a120549d3ec1b47e279a638bf
Author: exceptionfactory <[email protected]>
AuthorDate: Mon Dec 1 22:39:44 2025 -0600

    NIFI-15283 Added Netty HTTP libraries to Shared NAR
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #10590.
---
 .../nifi-standard-shared-bom/pom.xml               | 24 ++++++++++++++++++++++
 .../nifi-standard-shared-nar/pom.xml               | 20 ++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git 
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
 
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
index 4c6afbb644..4c579e2a15 100644
--- 
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
+++ 
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-bom/pom.xml
@@ -229,6 +229,30 @@
                 <version>${netty.4.version}</version>
                 <scope>provided</scope>
             </dependency>
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-codec-base</artifactId>
+                <version>${netty.4.version}</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-codec-compression</artifactId>
+                <version>${netty.4.version}</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-codec-http</artifactId>
+                <version>${netty.4.version}</version>
+                <scope>provided</scope>
+            </dependency>
+            <dependency>
+                <groupId>io.netty</groupId>
+                <artifactId>netty-codec-http2</artifactId>
+                <version>${netty.4.version}</version>
+                <scope>provided</scope>
+            </dependency>
         </dependencies>
     </dependencyManagement>
     <dependencies>
diff --git 
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-nar/pom.xml
 
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-nar/pom.xml
index fd7b130344..f6023f9bba 100644
--- 
a/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-nar/pom.xml
+++ 
b/nifi-extension-bundles/nifi-standard-shared-bundle/nifi-standard-shared-nar/pom.xml
@@ -188,5 +188,25 @@
             <artifactId>netty-codec</artifactId>
             <scope>compile</scope>
         </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-base</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-compression</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-http</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>io.netty</groupId>
+            <artifactId>netty-codec-http2</artifactId>
+            <scope>compile</scope>
+        </dependency>
     </dependencies>
 </project>

Reply via email to