This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch coheigea/californium-2.7.4-camel-3.20 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 1db52b190f00f0998409a0b643afb02eaba67c68 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 632da3276dc..2c37caaaf3c 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 2fac6de274b..5980bd65c29 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>
