2024-01-19 13:59:03 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
2024-02-23 16:13:40 +01:00
|
|
|
id 'io.freefair.lombok'
|
2024-01-19 13:59:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation libs.jsoup
|
|
|
|
implementation libs.notnull
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.zstd
|
|
|
|
implementation libs.bundles.slf4j
|
|
|
|
|
2024-02-23 16:13:40 +01:00
|
|
|
implementation libs.lombok
|
|
|
|
testImplementation libs.lombok
|
|
|
|
annotationProcessor libs.lombok
|
|
|
|
|
|
|
|
lombok libs.lombok // prevent plugin from downgrading the version to something incompatible with '19
|
|
|
|
|
2024-01-19 13:59:03 +01:00
|
|
|
implementation project(':code:libraries:blocking-thread-pool')
|
|
|
|
|
|
|
|
implementation project(':third-party:openzim')
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|