This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch camel-3.21.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit fbb7e0fd9642623a5102fbd38e6ce8f4466a486d Author: Colm O hEigeartaigh <[email protected]> AuthorDate: Wed Jul 19 16:04:03 2023 +0100 Bugfix for californium update, as Netty 2.7.4 dependency isn't in maven central (#10734) --- components/camel-coap/pom.xml | 2 +- parent/pom.xml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/camel-coap/pom.xml b/components/camel-coap/pom.xml index e3e52f14387..0acb9858694 100644 --- a/components/camel-coap/pom.xml +++ b/components/camel-coap/pom.xml @@ -63,7 +63,7 @@ <dependency> <groupId>org.eclipse.californium</groupId> <artifactId>element-connector-tcp-netty</artifactId> - <version>${californium-version}</version> + <version>${californium-netty-version}</version> <exclusions> <exclusion> <artifactId>element-connector</artifactId> diff --git a/parent/pom.xml b/parent/pom.xml index 50793f9ab9d..e9fff89b6e4 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -95,6 +95,8 @@ <c3p0-version>0.9.5.5</c3p0-version> <caffeine-version>3.1.2</caffeine-version> <californium-version>2.7.4</californium-version> + <!-- Remove once 2.7.5 comes out --> + <californium-netty-version>2.7.2</californium-netty-version> <californium-scandium-version>2.7.4</californium-scandium-version> <cassandra-driver-version>4.15.0</cassandra-driver-version> <cassandra-version>4.0.6</cassandra-version>
