2023-03-12 10:04:48 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-09-23 11:01:43 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
2023-03-12 10:04:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation libs.bundles.nlp
|
|
|
|
implementation libs.zstd
|
|
|
|
implementation libs.commons.compress
|
|
|
|
implementation libs.ffi
|
|
|
|
implementation libs.databind
|
|
|
|
implementation libs.bundles.gson
|
|
|
|
|
|
|
|
implementation project(':third-party:xz')
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|