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

dkulp pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit ffd06bd6cfbdd312d7aaae9e136986417e84579b
Author: Daniel Kulp <d...@kulp.com>
AuthorDate: Tue Sep 12 12:44:04 2023 -0400

    Update version of xnio used
---
 parent/pom.xml                          | 13 ++++++++++++-
 rt/transports/http-undertow/pom.xml     |  8 ++++++++
 systests/rs-sse/rs-sse-undertow/pom.xml | 10 ++++++++++
 3 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index d543c57407..ae5637c26f 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -221,7 +221,7 @@
         
<cxf.tomitribe.http.signature.version>1.8</cxf.tomitribe.http.signature.version>
         <cxf.undertow.osgi.version>[1.4,3.0)</cxf.undertow.osgi.version>
         
<cxf.undertow.xnio.osgi.version>[3.3,4.0)</cxf.undertow.xnio.osgi.version>
-        <cxf.undertow.version>2.2.24.Final</cxf.undertow.version>
+        <cxf.undertow.version>2.2.26.Final</cxf.undertow.version>
         <!-- the Export-Package is the same as the Maven artifact
              version (with the Final), but we don't want an import package 
with a version
              with a qualifier. We do want a range. -->
@@ -236,6 +236,7 @@
         <cxf.wss4j.version>2.4.2</cxf.wss4j.version>
         <cxf.xerces.version>2.12.2</cxf.xerces.version>
         <cxf.xmlschema.version>2.3.1</cxf.xmlschema.version>
+        <cxf.xnio.version>3.8.9.Final</cxf.xnio.version>
         <cxf.zest.version>2.1</cxf.zest.version>
 
         <!-- various OSGi related versions -->
@@ -1246,6 +1247,16 @@
                 <artifactId>jboss-logging</artifactId>
                 <version>${cxf.jboss.logging.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.jboss.xnio</groupId>
+                <artifactId>xnio-nio</artifactId>
+                <version>${cxf.xnio.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.jboss.xnio</groupId>
+                <artifactId>xnio-api</artifactId>
+                <version>${cxf.xnio.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.wildfly.common</groupId>
                 <artifactId>wildfly-common</artifactId>
diff --git a/rt/transports/http-undertow/pom.xml 
b/rt/transports/http-undertow/pom.xml
index ac6c714626..d5f47b16cb 100644
--- a/rt/transports/http-undertow/pom.xml
+++ b/rt/transports/http-undertow/pom.xml
@@ -89,6 +89,14 @@
             <groupId>io.undertow</groupId>
             <artifactId>undertow-servlet</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-nio</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-api</artifactId>
+        </dependency>
         <dependency>
             <groupId>${cxf.servlet-api.group}</groupId>
             <artifactId>${cxf.servlet-api.artifact}</artifactId>
diff --git a/systests/rs-sse/rs-sse-undertow/pom.xml 
b/systests/rs-sse/rs-sse-undertow/pom.xml
index a7980e44b3..caec274209 100644
--- a/systests/rs-sse/rs-sse-undertow/pom.xml
+++ b/systests/rs-sse/rs-sse-undertow/pom.xml
@@ -45,6 +45,16 @@
             <artifactId>undertow-servlet</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-nio</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.xnio</groupId>
+            <artifactId>xnio-api</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.apache.cxf.systests</groupId>
             <artifactId>cxf-systests-rs-sse-base</artifactId>

Reply via email to