Skip to content

Commit

Permalink
fix: use own distrib of sqlite with freebsd support
Browse files Browse the repository at this point in the history
closes gotson#319
  • Loading branch information
gotson committed Oct 24, 2020
1 parent ccba4bd commit 3d2793a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions komga/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,12 @@ dependencies {
implementation("com.github.f4b6a3:tsid-creator:2.2.4")

runtimeOnly("com.h2database:h2:1.4.200")
runtimeOnly("org.xerial:sqlite-jdbc:3.32.3.2")
jooqGeneratorRuntime("org.xerial:sqlite-jdbc:3.32.3.2")

// While waiting for https://github.com/xerial/sqlite-jdbc/pull/491 and https://github.com/xerial/sqlite-jdbc/pull/494
// runtimeOnly("org.xerial:sqlite-jdbc:3.32.3.2")
// jooqGeneratorRuntime("org.xerial:sqlite-jdbc:3.32.3.2")
runtimeOnly("org.gotson:sqlite-jdbc:3.32.3.4")
jooqGeneratorRuntime("org.gotson:sqlite-jdbc:3.32.3.4")

testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude(module = "mockito-core")
Expand Down

0 comments on commit 3d2793a

Please sign in to comment.