This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch lz4 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 610e7c71f09c87530d3122bcf765deb8287afa21 Author: Claus Ibsen <[email protected]> AuthorDate: Wed Dec 17 10:11:20 2025 +0100 CAMEL-22788: camel-rocketmq - Use new lz4 that is maintained and does not have CVE --- components/camel-rocketmq/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/components/camel-rocketmq/pom.xml b/components/camel-rocketmq/pom.xml index dc5dbe003443..0fd83c35a5cf 100644 --- a/components/camel-rocketmq/pom.xml +++ b/components/camel-rocketmq/pom.xml @@ -57,6 +57,17 @@ <groupId>org.apache.rocketmq</groupId> <artifactId>rocketmq-acl</artifactId> <version>${rocketmq-version}</version> + <exclusions> + <exclusion> + <groupId>org.lz4</groupId> + <artifactId>lz4-java</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>at.yawk.lz4</groupId> + <artifactId>lz4-java</artifactId> + <version>${lz4-java-version}</version> </dependency> <dependency>
