40c9d2050f
Removed the need to have to run an external tool to pre-process the data in order to load stackexchange-style data into the search engine. Removed the tool itself. This stirred up some issues with the dependencies, that were due to both third-party:ing xz and importing it as a dependency. This has been fixed, and :third-party:xz was removed.
25 lines
397 B
Groovy
25 lines
397 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion.set(JavaLanguageVersion.of(21))
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.bundles.nlp
|
|
implementation libs.zstd
|
|
implementation libs.commons.compress
|
|
implementation libs.ffi
|
|
implementation libs.databind
|
|
implementation libs.bundles.gson
|
|
|
|
implementation libs.xz
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|