2023-03-12 10:04:48 +01:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
toolchain {
|
2023-08-23 15:37:49 +02:00
|
|
|
languageVersion.set(JavaLanguageVersion.of(20))
|
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()
|
|
|
|
}
|