diff --git a/tcrdb/build.gradle b/tcrdb/build.gradle index 8218384e..b0eec461 100644 --- a/tcrdb/build.gradle +++ b/tcrdb/build.gradle @@ -5,6 +5,13 @@ repositories { mavenCentral() } +configurations.all { + resolutionStrategy { + // Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183 + force "at.yawk.lz4:lz4-java:${lz4Version}" + } +} + 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") diff --git a/tcrdb/gradle.properties b/tcrdb/gradle.properties index 50708a52..8b061f12 100644 --- a/tcrdb/gradle.properties +++ b/tcrdb/gradle.properties @@ -1 +1,3 @@ -repseqVersion=1.7.0 \ No newline at end of file +repseqVersion=1.7.0 +# Related to: https://nvd.nist.gov/vuln/detail/CVE-2025-12183 +lz4Version=1.9.0 \ No newline at end of file