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

54 lines
1.6 KiB
Groovy

plugins {
id 'java'
id 'jvm-test-suite'
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(21))
}
}
dependencies {
implementation project(':third-party:commons-codec')
implementation project(':code:functions:index:api')
implementation project(':code:libraries:array')
implementation project(':code:libraries:btree')
implementation project(':code:common:db')
implementation project(':code:common:config')
implementation project(':code:common:model')
implementation project(':code:common:linkdb')
implementation project(':code:common:service')
implementation project(':code:common:service-discovery')
implementation project(':code:functions:search-query:api')
implementation project(':code:functions:index:domain-ranking')
implementation project(':code:functions:index:forward-index')
implementation project(':code:functions:index:reverse-index')
implementation project(':code:functions:index:query')
implementation project(':code:functions:index:index-journal')
implementation project(':code:functions:index:result-ranking')
implementation libs.bundles.slf4j
implementation libs.prometheus
implementation libs.bundles.grpc
implementation libs.notnull
implementation libs.guice
implementation libs.trove
implementation libs.fastutil
implementation libs.bundles.gson
implementation libs.bundles.mariadb
testImplementation libs.bundles.slf4j.test
testImplementation libs.bundles.junit
testImplementation libs.mockito
testImplementation project(':code:common:process')
}