Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tcrdb/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ repositories {
mavenCentral()
}

configurations.all {
resolutionStrategy {
// Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183
dependencySubstitution {
substitute module('org.lz4:lz4-java') using module("at.yawk.lz4:lz4-java:${lz4Version}")

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Usually versions are specified on both sides of the substitution, but this makes sense to me here since we won't be going backwards in versions (to before the library moved to its new coordinates).

}
}
}

dependencies {
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:singlecell", depProjectConfig: "apiJarFile")
BuildUtils.addLabKeyDependency(project: project, config: "implementation", depProjectPath: ":server:modules:DiscvrLabKeyModules:SequenceAnalysis", depProjectConfig: "apiJarFile")
Expand Down
1 change: 1 addition & 0 deletions tcrdb/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
lz4Version=1.8.1
repseqVersion=1.7.0