From b0d9b88829be97355ad0d262b3caa8c3ff8e2113 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Tue, 14 Jan 2025 14:21:29 +0800 Subject: [PATCH] perf: downgrade sqlite-jdbc from 3.47.1.0 to 3.46.1.3 Closes: #1823 --- komga/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/komga/build.gradle.kts b/komga/build.gradle.kts index ecdb4131e29..fe637a9733d 100644 --- a/komga/build.gradle.kts +++ b/komga/build.gradle.kts @@ -34,6 +34,15 @@ val kaptBenchmark by configurations.getting { extendsFrom(configurations.kaptTest.get()) } +configurations { + configureEach { + resolutionStrategy { + // https://github.com/gotson/komga/issues/1823 + force("org.xerial:sqlite-jdbc:3.46.1.3") + } + } +} + dependencies { implementation(kotlin("stdlib")) implementation(kotlin("reflect"))