From 0e30e7ef396975ec77e643ac2784a928b74c5bcd Mon Sep 17 00:00:00 2001 From: Christian Pape Date: Thu, 23 Oct 2025 15:55:31 +0200 Subject: [PATCH] NMS-16551: Remove old netty versions --- .../features/src/main/resources/features.xml | 1 + .../etc/overrides.properties | 1 + .../etc/overrides.properties | 12 ++- dependencies/cassandra-test/pom.xml | 2 +- dependencies/newts/pom.xml | 2 +- features/amqp/alarm-northbounder/pom.xml | 75 ++++++++++++++++++ features/amqp/event-forwarder/pom.xml | 77 ++++++++++++++++++- features/amqp/event-receiver/pom.xml | 74 ++++++++++++++++++ .../core/repository/src/assembly/repo.xml | 2 + .../minion/repository/src/assembly/repo.xml | 2 + 10 files changed, 244 insertions(+), 4 deletions(-) diff --git a/container/features/src/main/resources/features.xml b/container/features/src/main/resources/features.xml index 1961bb384ddd..97412df015c4 100644 --- a/container/features/src/main/resources/features.xml +++ b/container/features/src/main/resources/features.xml @@ -21,6 +21,7 @@ mvn:io.netty/netty-handler/${netty4Version} mvn:io.netty/netty-transport-classes-epoll/${netty4Version} mvn:io.netty/netty-transport-native-epoll/${netty4Version} + mvn:io.netty/netty-transport-native-kqueue/${netty4Version} mvn:io.netty/netty-transport-native-unix-common/${netty4Version} mvn:io.netty/netty-codec/${netty4Version} mvn:commons-pool/commons-pool/${commonsPoolVersion} diff --git a/container/karaf/src/main/filtered-resources/etc/overrides.properties b/container/karaf/src/main/filtered-resources/etc/overrides.properties index 23ea75e76d40..045bf6048ab7 100644 --- a/container/karaf/src/main/filtered-resources/etc/overrides.properties +++ b/container/karaf/src/main/filtered-resources/etc/overrides.properties @@ -83,6 +83,7 @@ mvn:io.netty/netty-transport/${netty4Version} mvn:io.netty/netty-handler/${netty4Version} mvn:io.netty/netty-transport-classes-epoll/${netty4Version} mvn:io.netty/netty-transport-native-epoll/${netty4Version} +mvn:io.netty/netty-transport-native-kqueue/${netty4Version} mvn:io.netty/netty-transport-native-unix-common/${netty4Version} mvn:io.netty/netty-transport-native-kqueue/${netty4Version} mvn:io.netty/netty-codec/${netty4Version} diff --git a/container/shared/src/main/filtered-resources/etc/overrides.properties b/container/shared/src/main/filtered-resources/etc/overrides.properties index f50e1028b697..c085be79f068 100644 --- a/container/shared/src/main/filtered-resources/etc/overrides.properties +++ b/container/shared/src/main/filtered-resources/etc/overrides.properties @@ -80,5 +80,15 @@ mvn:com.fasterxml.jackson.core/jackson-annotations/${jackson2Version} mvn:com.fasterxml.jackson.core/jackson-databind/${jackson2Version} mvn:com.fasterxml.jackson.core/jackson-core/${jackson2Version} +mvn:io.netty/netty-resolver/${netty4Version} mvn:io.netty/netty-common/${netty4Version} -mvn:io.netty/netty-transport/${netty4Version} \ No newline at end of file +mvn:io.netty/netty-buffer/${netty4Version} +mvn:io.netty/netty-transport/${netty4Version} +mvn:io.netty/netty-handler/${netty4Version} +mvn:io.netty/netty-transport-classes-epoll/${netty4Version} +mvn:io.netty/netty-transport-native-epoll/${netty4Version} +mvn:io.netty/netty-transport-native-kqueue/${netty4Version} +mvn:io.netty/netty-transport-native-unix-common/${netty4Version} +mvn:io.netty/netty-transport-native-kqueue/${netty4Version} +mvn:io.netty/netty-codec/${netty4Version} +mvn:io.netty/netty-codec-http/${netty4Version} \ No newline at end of file diff --git a/dependencies/cassandra-test/pom.xml b/dependencies/cassandra-test/pom.xml index 869695a51753..0fc8d565acda 100644 --- a/dependencies/cassandra-test/pom.xml +++ b/dependencies/cassandra-test/pom.xml @@ -86,4 +86,4 @@ ${cassandraVersion} - + \ No newline at end of file diff --git a/dependencies/newts/pom.xml b/dependencies/newts/pom.xml index c3465407bf16..7b630afe49f6 100644 --- a/dependencies/newts/pom.xml +++ b/dependencies/newts/pom.xml @@ -69,4 +69,4 @@ ${jnrVersion} - + \ No newline at end of file diff --git a/features/amqp/alarm-northbounder/pom.xml b/features/amqp/alarm-northbounder/pom.xml index 8b14a65a77dd..2dae6032cc94 100644 --- a/features/amqp/alarm-northbounder/pom.xml +++ b/features/amqp/alarm-northbounder/pom.xml @@ -173,8 +173,83 @@ com.sun.xml.bind jaxb-impl + + org.apache.qpid + qpid-jms-client + + + org.apache.qpid + qpid-jms-client + 0.30.0 + + + io.netty + netty-buffer + + + io.netty + netty-common + + + io.netty + netty-handler + + + io.netty + netty-transport + + + io.netty + netty-codec-http + + + io.netty + netty-transport-native-epoll + + + io.netty + netty-transport-native-kqueue + + + + + io.netty + netty-buffer + ${netty4Version} + + + io.netty + netty-common + ${netty4Version} + + + io.netty + netty-handler + ${netty4Version} + + + io.netty + netty-transport + ${netty4Version} + + + io.netty + netty-codec-http + ${netty4Version} + + + io.netty + netty-transport-native-epoll + ${netty4Version} + + + io.netty + netty-transport-native-kqueue + ${netty4Version} + + junit junit diff --git a/features/amqp/event-forwarder/pom.xml b/features/amqp/event-forwarder/pom.xml index 858b60c51d83..d820fe3a4a52 100644 --- a/features/amqp/event-forwarder/pom.xml +++ b/features/amqp/event-forwarder/pom.xml @@ -181,9 +181,84 @@ com.sun.xml.bind jaxb-impl + + org.apache.qpid + qpid-jms-client + - + + org.apache.qpid + qpid-jms-client + 0.30.0 + + + io.netty + netty-buffer + + + io.netty + netty-common + + + io.netty + netty-handler + + + io.netty + netty-transport + + + io.netty + netty-codec-http + + + io.netty + netty-transport-native-epoll + + + io.netty + netty-transport-native-kqueue + + + + + io.netty + netty-buffer + ${netty4Version} + + + io.netty + netty-common + ${netty4Version} + + + io.netty + netty-handler + ${netty4Version} + + + io.netty + netty-transport + ${netty4Version} + + + io.netty + netty-codec-http + ${netty4Version} + + + io.netty + netty-transport-native-epoll + ${netty4Version} + + + io.netty + netty-transport-native-kqueue + ${netty4Version} + + + junit junit test diff --git a/features/amqp/event-receiver/pom.xml b/features/amqp/event-receiver/pom.xml index 58408165f76f..5f4f19679325 100644 --- a/features/amqp/event-receiver/pom.xml +++ b/features/amqp/event-receiver/pom.xml @@ -180,8 +180,82 @@ com.sun.xml.bind jaxb-impl + + org.apache.qpid + qpid-jms-client + + + + + org.apache.qpid + qpid-jms-client + 0.30.0 + + + io.netty + netty-buffer + + + io.netty + netty-common + + + io.netty + netty-handler + + + io.netty + netty-transport + + + io.netty + netty-codec-http + + + io.netty + netty-transport-native-epoll + + + io.netty + netty-transport-native-kqueue + + + io.netty + netty-buffer + ${netty4Version} + + + io.netty + netty-common + ${netty4Version} + + + io.netty + netty-handler + ${netty4Version} + + + io.netty + netty-transport + ${netty4Version} + + + io.netty + netty-codec-http + ${netty4Version} + + + io.netty + netty-transport-native-epoll + ${netty4Version} + + + io.netty + netty-transport-native-kqueue + ${netty4Version} + junit junit diff --git a/features/minion/core/repository/src/assembly/repo.xml b/features/minion/core/repository/src/assembly/repo.xml index c4614fcf4e30..b83118309663 100644 --- a/features/minion/core/repository/src/assembly/repo.xml +++ b/features/minion/core/repository/src/assembly/repo.xml @@ -13,6 +13,8 @@ **/zookeeper/3.4.14 **/zookeeper/3.4.14/* + io/netty/netty-*/4.1.77.Final + io/netty/netty-*/4.1.77.Final/* diff --git a/features/minion/repository/src/assembly/repo.xml b/features/minion/repository/src/assembly/repo.xml index d9bcda3acbff..6ea4740acb5f 100644 --- a/features/minion/repository/src/assembly/repo.xml +++ b/features/minion/repository/src/assembly/repo.xml @@ -17,6 +17,8 @@ **/zookeeper/3.4.14/* **/com/fasterxml/jackson/core/jackson-*/2.14.1 **/com/fasterxml/jackson/core/jackson-*/2.14.1/* + io/netty/netty-*/4.1.77.Final + io/netty/netty-*/4.1.77.Final/*