SUPPORT-9634: fix CVE-2025-12183

This commit is contained in:
adel.ka 2025-12-04 12:08:13 +03:00
parent edd17e39a8
commit bded2143c6
2 changed files with 14 additions and 0 deletions

View file

@ -248,6 +248,10 @@
<groupId>org.apache.kafka</groupId> <groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId> <artifactId>kafka-clients</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>
<finalName>${project.parent.artifactId}</finalName> <finalName>${project.parent.artifactId}</finalName>

10
pom.xml
View file

@ -344,8 +344,18 @@
<groupId>org.xerial.snappy</groupId> <groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId> <artifactId>snappy-java</artifactId>
</exclusion> </exclusion>
<exclusion>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
</exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<dependency>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
<version>1.8.1</version>
<scope>runtime</scope>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<repositories> <repositories>