Skip to content

Commit e5cd83a

Browse files
committed
Bump lz4 library to 1.8.1
1 parent 5c625e5 commit e5cd83a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

tcrdb/build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ repositories {
55
mavenCentral()
66
}
77

8+
configurations.all {
9+
resolutionStrategy {
10+
// Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183
11+
dependencySubstitution {
12+
substitute module('org.lz4:lz4-java') using module("at.yawk.lz4:lz4-java:${lz4Version}")
13+
}
14+
}
15+
}
16+
817
dependencies {
918
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:singlecell", depProjectConfig: "apiJarFile")
1019
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:SequenceAnalysis", depProjectConfig: "apiJarFile")

tcrdb/gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
lz4Version=1.8.1
12
repseqVersion=1.7.0

0 commit comments

Comments
 (0)