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 39b56e81c635b90901b5211904eeac353d4adf02 Author: Claus Ibsen <[email protected]> AuthorDate: Wed Dec 17 10:03:34 2025 +0100 CAMEL-22788: camel-flink - Use new lz4 that is maintained and does not have CVE --- components/camel-flink/pom.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/components/camel-flink/pom.xml b/components/camel-flink/pom.xml index d18b58329342..1a060b6746da 100644 --- a/components/camel-flink/pom.xml +++ b/components/camel-flink/pom.xml @@ -72,6 +72,10 @@ <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> + <exclusion> + <groupId>org.lz4</groupId> + <artifactId>lz4-java</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -89,6 +93,11 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>at.yawk.lz4</groupId> + <artifactId>lz4-java</artifactId> + <version>${lz4-java-version}</version> + </dependency> <!--testing--> <dependency>
