MarginaliaSearch/code/process-models/processed-data/build.gradle
Viktor Lofgren 9b922af075 (converter) Amend existing modifications to use gamma coded positions lists
... instead of serialized RoaringBitmaps as was the initial take on the problem.
2024-05-30 14:20:36 +02:00

31 lines
660 B
Groovy

plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(rootProject.ext.jvmVersion))
}
}
apply from: "$rootProject.projectDir/srcsets.gradle"
dependencies {
implementation libs.bundles.slf4j
implementation project(':third-party:parquet-floor')
implementation project(':code:libraries:coded-sequence')
implementation libs.notnull
implementation libs.roaringbitmap
implementation libs.trove
implementation libs.bundles.parquet
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}