This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch coheigea/californium-2.7.4 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0aa6cf1a6570f7b323f2900e153b1ece8cdefccc Author: Colm O hEigeartaigh <[email protected]> AuthorDate: Wed Jul 19 14:57:50 2023 +0100 Bugfix for californium update, as Netty 2.7.4 dependency isn't in maven central --- 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 d9d0a059427..fea08125749 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 7f417465900..598b2a5349f 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -96,6 +96,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>
