CatgirlIntelligenceAgency/code/functions/index/reverse-index/build.gradle
2024-02-22 17:31:25 +01:00

34 lines
820 B
Groovy

plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
dependencies {
implementation project(':code:libraries:array')
implementation project(':code:libraries:btree')
implementation project(':code:libraries:random-write-funnel')
implementation project(':code:functions:index:domain-ranking')
implementation project(':code:functions:index:query')
implementation project(':code:functions:index:index-journal')
implementation project(':code:common:model')
implementation project(':code:common:process')
implementation libs.bundles.slf4j
implementation libs.fastutil
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
}