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 bc3b3bb0e08cc397d6255cce9e4cde34fb18d188 Author: Claus Ibsen <[email protected]> AuthorDate: Wed Dec 17 10:07:03 2025 +0100 CAMEL-22788: camel-aws2-kinesis - Use new lz4 that is maintained and does not have CVE --- components/camel-aws/camel-aws2-kinesis/pom.xml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/components/camel-aws/camel-aws2-kinesis/pom.xml b/components/camel-aws/camel-aws2-kinesis/pom.xml index 4a7ca805451b..cb6fd07a1bb9 100644 --- a/components/camel-aws/camel-aws2-kinesis/pom.xml +++ b/components/camel-aws/camel-aws2-kinesis/pom.xml @@ -55,6 +55,17 @@ <groupId>software.amazon.kinesis</groupId> <artifactId>amazon-kinesis-client</artifactId> <version>${amazon-kinesis-client-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> <groupId>software.amazon.awssdk</groupId>
