mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 21:18:58 +00:00
26 lines
475 B
Groovy
26 lines
475 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.jsoup
|
|
implementation libs.notnull
|
|
implementation libs.bundles.gson
|
|
implementation libs.zstd
|
|
implementation libs.bundles.slf4j
|
|
|
|
implementation project(':code:libraries:blocking-thread-pool')
|
|
|
|
implementation project(':third-party:openzim')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|